
    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_be03377c2935ebc4c99ca5b7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_d8acdc51d1d52c4f16dcbb0d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_c752c9e4cb61da3209e975c6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.047000;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_4bc20b47f9bfebc791b5ef77.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.166000;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_8cd0d43559ed493e4d3628c6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.023000;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_254cfc75477f35491b91444a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.023000;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_254cfc75477f35491b91444a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.023000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.000183px;}
.v3{vertical-align:-21.599994px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.000732px;}
.lsc{letter-spacing:-9.300000px;}
.ls22{letter-spacing:-3.180000px;}
.ls35{letter-spacing:-3.000000px;}
.ls2d{letter-spacing:-2.880000px;}
.ls24{letter-spacing:-2.754000px;}
.ls1e{letter-spacing:-2.700000px;}
.ls19{letter-spacing:-2.550000px;}
.ls10{letter-spacing:-2.544000px;}
.ls1a{letter-spacing:-2.400000px;}
.ls1b{letter-spacing:-2.346000px;}
.lsa{letter-spacing:-2.160000px;}
.ls21{letter-spacing:-2.100000px;}
.ls2e{letter-spacing:-2.040000px;}
.ls30{letter-spacing:-1.989000px;}
.ls1d{letter-spacing:-1.980000px;}
.ls9{letter-spacing:-1.920000px;}
.ls6{letter-spacing:-1.800000px;}
.ls37{letter-spacing:-1.683000px;}
.ls1f{letter-spacing:-1.620000px;}
.ls15{letter-spacing:-1.530000px;}
.ls2f{letter-spacing:-1.500000px;}
.ls28{letter-spacing:-1.428000px;}
.ls32{letter-spacing:-1.380000px;}
.ls33{letter-spacing:-1.377000px;}
.ls27{letter-spacing:-1.320000px;}
.ls17{letter-spacing:-1.275000px;}
.ls29{letter-spacing:-1.200000px;}
.ls31{letter-spacing:-1.140000px;}
.ls26{letter-spacing:-1.122000px;}
.ls16{letter-spacing:-1.020000px;}
.ls14{letter-spacing:-0.960000px;}
.ls12{letter-spacing:-0.900000px;}
.ls2a{letter-spacing:-0.867000px;}
.ls1c{letter-spacing:-0.840000px;}
.ls5{letter-spacing:-0.780000px;}
.ls23{letter-spacing:-0.663000px;}
.ls1{letter-spacing:-0.660000px;}
.ls2{letter-spacing:-0.600000px;}
.ls4{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.480000px;}
.ls3{letter-spacing:-0.420000px;}
.ls13{letter-spacing:-0.330000px;}
.ls18{letter-spacing:-0.300000px;}
.ls7{letter-spacing:-0.240000px;}
.lsb{letter-spacing:-0.120000px;}
.ls0{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.000041px;}
.ls25{letter-spacing:0.000088px;}
.ls8{letter-spacing:0.060000px;}
.ls2b{letter-spacing:0.180000px;}
.ls34{letter-spacing:0.240000px;}
.ls36{letter-spacing:0.255000px;}
.ls11{letter-spacing:0.480000px;}
.ls20{letter-spacing:0.600000px;}
.lsf{letter-spacing:0.900000px;}
.lsd{letter-spacing:0.960000px;}
.ls38{letter-spacing:1.200000px;}
.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;}
}
.wsd{word-spacing:-14.400000px;}
.ws4{word-spacing:-13.800000px;}
.wsf{word-spacing:-13.200000px;}
.ws20{word-spacing:-13.020000px;}
.ws1f{word-spacing:-12.960000px;}
.ws33{word-spacing:-12.780000px;}
.ws3b{word-spacing:-12.420000px;}
.ws3a{word-spacing:-12.300000px;}
.ws46{word-spacing:-12.240000px;}
.ws28{word-spacing:-12.180000px;}
.ws1{word-spacing:-12.144000px;}
.ws43{word-spacing:-12.000000px;}
.ws21{word-spacing:-11.820000px;}
.ws19{word-spacing:-11.814000px;}
.ws2a{word-spacing:-11.700000px;}
.ws29{word-spacing:-11.640000px;}
.ws2{word-spacing:-11.484000px;}
.ws3c{word-spacing:-11.280000px;}
.ws32{word-spacing:-11.220000px;}
.ws13{word-spacing:-11.040000px;}
.ws3d{word-spacing:-10.800000px;}
.ws1c{word-spacing:-10.740000px;}
.ws30{word-spacing:-10.620000px;}
.ws1e{word-spacing:-10.560000px;}
.ws3{word-spacing:-10.440000px;}
.ws34{word-spacing:-10.260000px;}
.ws31{word-spacing:-9.840000px;}
.wsa{word-spacing:-9.246000px;}
.ws7{word-spacing:-9.120000px;}
.ws39{word-spacing:-9.000000px;}
.ws45{word-spacing:-8.940000px;}
.ws1d{word-spacing:-8.640000px;}
.ws22{word-spacing:-8.340000px;}
.ws2b{word-spacing:-7.860000px;}
.wsb{word-spacing:-7.396800px;}
.wsc{word-spacing:-3.000000px;}
.ws2f{word-spacing:-2.400000px;}
.ws3f{word-spacing:-1.800000px;}
.ws14{word-spacing:-0.960000px;}
.ws36{word-spacing:-0.660000px;}
.ws11{word-spacing:-0.600000px;}
.ws17{word-spacing:-0.480000px;}
.ws42{word-spacing:-0.300000px;}
.ws47{word-spacing:-0.255000px;}
.ws44{word-spacing:-0.240000px;}
.ws9{word-spacing:-0.180000px;}
.wse{word-spacing:-0.120000px;}
.ws8{word-spacing:-0.060000px;}
.ws0{word-spacing:0.000000px;}
.ws1a{word-spacing:0.240000px;}
.ws15{word-spacing:0.480000px;}
.ws2c{word-spacing:0.600000px;}
.ws2d{word-spacing:0.663000px;}
.ws38{word-spacing:0.867000px;}
.ws1b{word-spacing:0.960000px;}
.ws24{word-spacing:1.020000px;}
.ws35{word-spacing:1.122000px;}
.ws25{word-spacing:1.275000px;}
.ws41{word-spacing:1.377000px;}
.ws37{word-spacing:1.428000px;}
.ws23{word-spacing:1.530000px;}
.ws48{word-spacing:1.683000px;}
.ws6{word-spacing:1.800000px;}
.ws5{word-spacing:1.890000px;}
.ws18{word-spacing:1.920000px;}
.ws40{word-spacing:1.989000px;}
.ws10{word-spacing:2.160000px;}
.ws27{word-spacing:2.346000px;}
.ws16{word-spacing:2.544000px;}
.ws26{word-spacing:2.550000px;}
.ws2e{word-spacing:2.754000px;}
.ws3e{word-spacing:2.880000px;}
.ws12{word-spacing:9.300000px;}
._4{margin-left:-19.440000px;}
._a{margin-left:-11.040000px;}
._7{margin-left:-9.519600px;}
._8{margin-left:-7.572000px;}
._9{margin-left:-6.393600px;}
._1{margin-left:-5.040000px;}
._3{margin-left:-3.780000px;}
._2{margin-left:-2.736000px;}
._0{margin-left:-1.716000px;}
._5{width:1.137600px;}
._6{width:2.766000px;}
._d{width:4.268400px;}
._c{width:9.175221px;}
._b{width:12.959757px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:32.160000px;}
.fsa{font-size:40.199999px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fsc{font-size:51.000000px;}
.fs9{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:84.000000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y43{bottom:13.500000px;}
.y5{bottom:66.525004px;}
.y20{bottom:68.808598px;}
.y45{bottom:68.809347px;}
.ycb{bottom:93.156298px;}
.y1e4{bottom:93.200850px;}
.ye4{bottom:94.249048px;}
.y87{bottom:94.249203px;}
.y72{bottom:94.250850px;}
.ya4{bottom:94.251303px;}
.y171{bottom:95.000850px;}
.y12f{bottom:96.027150px;}
.y151{bottom:96.500850px;}
.y4{bottom:97.125005px;}
.y10b{bottom:97.227150px;}
.y86{bottom:107.749203px;}
.y42{bottom:107.750850px;}
.yca{bottom:111.156303px;}
.y1e3{bottom:111.200855px;}
.ye3{bottom:112.249054px;}
.y71{bottom:112.250850px;}
.ya3{bottom:112.251297px;}
.y170{bottom:113.000850px;}
.y12e{bottom:114.027145px;}
.y150{bottom:114.500850px;}
.y10a{bottom:115.227150px;}
.y41{bottom:125.750850px;}
.yc9{bottom:129.156303px;}
.y1e2{bottom:129.200855px;}
.ye2{bottom:130.249054px;}
.y70{bottom:130.250850px;}
.ya2{bottom:130.251297px;}
.y16f{bottom:131.000850px;}
.y14f{bottom:132.500850px;}
.y109{bottom:133.227150px;}
.y1f{bottom:139.264499px;}
.y40{bottom:143.750850px;}
.y1bb{bottom:145.250850px;}
.y1e1{bottom:147.200855px;}
.ye1{bottom:148.249054px;}
.y6f{bottom:148.250850px;}
.ya1{bottom:148.251297px;}
.y12d{bottom:152.427155px;}
.y3f{bottom:161.750850px;}
.y1ba{bottom:163.250850px;}
.y196{bottom:164.750850px;}
.yc8{bottom:165.156303px;}
.y1e0{bottom:165.200855px;}
.y6e{bottom:166.250850px;}
.ya0{bottom:166.251297px;}
.y108{bottom:169.227150px;}
.y12c{bottom:170.427155px;}
.y14e{bottom:170.750850px;}
.y3e{bottom:179.750850px;}
.y1b9{bottom:181.250850px;}
.y195{bottom:182.750850px;}
.y6d{bottom:184.250850px;}
.y9f{bottom:184.251297px;}
.y107{bottom:187.227150px;}
.y12b{bottom:188.427155px;}
.y14d{bottom:188.750850px;}
.y88{bottom:189.650848px;}
.y16{bottom:196.933500px;}
.y3d{bottom:197.750850px;}
.y1b8{bottom:199.250850px;}
.y194{bottom:200.750850px;}
.yc7{bottom:201.156303px;}
.y6c{bottom:202.250850px;}
.y9e{bottom:202.251297px;}
.y1df{bottom:202.700855px;}
.y106{bottom:205.227150px;}
.y12a{bottom:206.427155px;}
.y14c{bottom:206.750839px;}
.y1e{bottom:209.518500px;}
.y15{bottom:209.533503px;}
.ye0{bottom:214.605148px;}
.y3c{bottom:215.750839px;}
.y1b7{bottom:217.250839px;}
.y193{bottom:218.750839px;}
.yc6{bottom:219.156303px;}
.y6b{bottom:220.250702px;}
.y9d{bottom:220.251297px;}
.y1de{bottom:220.700706px;}
.y1d{bottom:222.118502px;}
.y14{bottom:222.133505px;}
.y14b{bottom:224.750702px;}
.y89{bottom:225.650848px;}
.y16e{bottom:233.750702px;}
.y3b{bottom:233.750839px;}
.y1c{bottom:234.718504px;}
.y13{bottom:234.733496px;}
.y1b6{bottom:235.250702px;}
.y192{bottom:236.750702px;}
.yc5{bottom:237.156303px;}
.y6a{bottom:238.250702px;}
.y9c{bottom:238.251297px;}
.y1dd{bottom:238.700706px;}
.y105{bottom:241.227150px;}
.y129{bottom:244.827141px;}
.ydf{bottom:250.605148px;}
.y16d{bottom:251.750702px;}
.y3a{bottom:251.750839px;}
.y191{bottom:254.750702px;}
.yc4{bottom:255.156303px;}
.y69{bottom:256.250702px;}
.y9b{bottom:256.251297px;}
.y1dc{bottom:256.700706px;}
.y104{bottom:259.227150px;}
.y1b{bottom:259.918497px;}
.y12{bottom:259.933500px;}
.y128{bottom:262.827141px;}
.y14a{bottom:263.000702px;}
.y1b5{bottom:268.250702px;}
.y16c{bottom:269.750702px;}
.y39{bottom:269.750839px;}
.y1a{bottom:272.518500px;}
.y11{bottom:272.533503px;}
.y190{bottom:272.750702px;}
.yc3{bottom:273.156303px;}
.y68{bottom:274.250702px;}
.y9a{bottom:274.251297px;}
.y1db{bottom:274.700706px;}
.y103{bottom:277.227150px;}
.y127{bottom:280.827141px;}
.y149{bottom:281.000702px;}
.y19{bottom:285.118502px;}
.y10{bottom:285.133499px;}
.y1b4{bottom:286.250702px;}
.yde{bottom:286.605148px;}
.y18f{bottom:290.750702px;}
.yc2{bottom:291.156303px;}
.y67{bottom:292.250702px;}
.y99{bottom:292.251297px;}
.y1da{bottom:292.700706px;}
.y102{bottom:295.227150px;}
.y126{bottom:298.827141px;}
.y148{bottom:299.000702px;}
.y16b{bottom:300.500702px;}
.y1b3{bottom:304.250702px;}
.ydd{bottom:304.605148px;}
.y38{bottom:305.750244px;}
.y18e{bottom:308.750702px;}
.yc1{bottom:309.156303px;}
.y66{bottom:310.250702px;}
.y98{bottom:310.251297px;}
.y18{bottom:310.318501px;}
.yf{bottom:310.333501px;}
.y1d9{bottom:310.700706px;}
.y101{bottom:313.227150px;}
.y125{bottom:316.827141px;}
.y147{bottom:317.000702px;}
.y16a{bottom:318.500702px;}
.y1b2{bottom:322.250702px;}
.y17{bottom:322.918500px;}
.ye{bottom:322.933500px;}
.yc0{bottom:327.156303px;}
.y65{bottom:328.250702px;}
.y97{bottom:328.251297px;}
.y124{bottom:334.827141px;}
.y146{bottom:335.000702px;}
.y169{bottom:336.500702px;}
.ydc{bottom:340.605148px;}
.y18d{bottom:343.250702px;}
.ybf{bottom:345.156303px;}
.y64{bottom:346.250702px;}
.y96{bottom:346.251297px;}
.yd{bottom:348.133500px;}
.y1d8{bottom:348.200706px;}
.y100{bottom:349.227150px;}
.y37{bottom:354.156303px;}
.y168{bottom:354.500702px;}
.y1b1{bottom:355.250702px;}
.y18c{bottom:361.250702px;}
.ybe{bottom:363.156303px;}
.y63{bottom:364.250702px;}
.y95{bottom:364.251297px;}
.y1d7{bottom:366.200706px;}
.yff{bottom:367.227150px;}
.y36{bottom:372.156303px;}
.y123{bottom:373.227150px;}
.y145{bottom:373.250702px;}
.ydb{bottom:376.605148px;}
.y18b{bottom:379.250702px;}
.ybd{bottom:381.156303px;}
.y62{bottom:382.250702px;}
.y94{bottom:382.251297px;}
.y1d6{bottom:384.200706px;}
.yfe{bottom:385.227150px;}
.y167{bottom:385.250702px;}
.yc{bottom:386.785499px;}
.y122{bottom:391.227150px;}
.y144{bottom:391.250702px;}
.y18a{bottom:397.250702px;}
.ybc{bottom:399.156281px;}
.y61{bottom:400.250702px;}
.y93{bottom:400.251297px;}
.y1d5{bottom:402.200684px;}
.yfd{bottom:403.227173px;}
.y166{bottom:403.250702px;}
.yb{bottom:408.044999px;}
.y35{bottom:408.156281px;}
.y121{bottom:409.227173px;}
.y143{bottom:409.250702px;}
.yda{bottom:412.605148px;}
.y189{bottom:415.250702px;}
.ybb{bottom:417.156281px;}
.y60{bottom:418.250702px;}
.y92{bottom:418.251297px;}
.y1d4{bottom:420.200684px;}
.yfc{bottom:421.227173px;}
.y165{bottom:421.250702px;}
.y34{bottom:426.156281px;}
.y120{bottom:427.227173px;}
.y1a1{bottom:433.250702px;}
.yba{bottom:435.156281px;}
.y81{bottom:436.250702px;}
.y91{bottom:436.251297px;}
.y1d3{bottom:438.200684px;}
.y164{bottom:439.250702px;}
.y1b0{bottom:440.750702px;}
.y33{bottom:444.156281px;}
.y11f{bottom:445.227173px;}
.y142{bottom:447.500702px;}
.y188{bottom:449.750702px;}
.y1a0{bottom:451.250702px;}
.yb9{bottom:453.156281px;}
.y5f{bottom:454.250702px;}
.y90{bottom:454.251297px;}
.y1d2{bottom:456.200684px;}
.yfb{bottom:457.227173px;}
.y1af{bottom:458.750702px;}
.y32{bottom:462.156281px;}
.y11e{bottom:463.227173px;}
.y141{bottom:465.500702px;}
.y187{bottom:467.750702px;}
.y163{bottom:470.000702px;}
.y80{bottom:472.250702px;}
.y8f{bottom:472.251297px;}
.yfa{bottom:475.227173px;}
.y1ae{bottom:476.750702px;}
.y31{bottom:480.156281px;}
.y11d{bottom:481.227173px;}
.y140{bottom:483.500702px;}
.y19f{bottom:484.250702px;}
.ya{bottom:484.864502px;}
.y186{bottom:485.750702px;}
.y162{bottom:488.000702px;}
.yb8{bottom:489.156281px;}
.y7f{bottom:490.250702px;}
.y8e{bottom:490.251297px;}
.y1d1{bottom:492.200684px;}
.yf9{bottom:493.227173px;}
.y1ad{bottom:494.750702px;}
.y30{bottom:498.156281px;}
.y5e{bottom:499.250702px;}
.y13f{bottom:501.500702px;}
.y19e{bottom:502.250702px;}
.y9{bottom:502.864502px;}
.y185{bottom:503.750702px;}
.y161{bottom:506.000702px;}
.y7e{bottom:508.250702px;}
.y8d{bottom:508.251297px;}
.y1d0{bottom:510.200684px;}
.yf8{bottom:511.227173px;}
.y1ac{bottom:512.750702px;}
.y2f{bottom:516.156281px;}
.y5d{bottom:517.250702px;}
.y13e{bottom:519.500702px;}
.y11c{bottom:519.627136px;}
.y19d{bottom:520.250702px;}
.y8{bottom:520.864502px;}
.y184{bottom:521.750702px;}
.y160{bottom:524.000702px;}
.yb7{bottom:525.156281px;}
.y7d{bottom:526.250702px;}
.y8c{bottom:526.251297px;}
.y1cf{bottom:528.200684px;}
.yf7{bottom:529.227173px;}
.y2e{bottom:534.156281px;}
.y5c{bottom:535.250702px;}
.y13d{bottom:537.500702px;}
.y11b{bottom:537.627136px;}
.y19c{bottom:538.250702px;}
.y7{bottom:538.864499px;}
.y15f{bottom:542.000702px;}
.yb6{bottom:543.156281px;}
.y7c{bottom:544.250702px;}
.y8b{bottom:544.251297px;}
.y1ce{bottom:546.200684px;}
.y2d{bottom:552.156281px;}
.y5b{bottom:553.250702px;}
.y13c{bottom:555.500702px;}
.y11a{bottom:555.627136px;}
.y183{bottom:556.250702px;}
.y6{bottom:556.864499px;}
.y15e{bottom:560.000702px;}
.yb5{bottom:561.156281px;}
.y7b{bottom:562.250702px;}
.y8a{bottom:562.251297px;}
.y1cd{bottom:564.200684px;}
.yf6{bottom:565.227173px;}
.y2c{bottom:570.156281px;}
.y5a{bottom:571.250702px;}
.y13b{bottom:573.500702px;}
.y182{bottom:574.250702px;}
.yb4{bottom:579.156281px;}
.y7a{bottom:580.250702px;}
.y85{bottom:580.251297px;}
.y1cc{bottom:582.200684px;}
.yf5{bottom:583.227173px;}
.y2b{bottom:588.156281px;}
.y59{bottom:589.250702px;}
.y15d{bottom:590.750702px;}
.y13a{bottom:591.500702px;}
.y181{bottom:592.250702px;}
.y119{bottom:594.027145px;}
.yb3{bottom:597.156281px;}
.y79{bottom:598.250702px;}
.y84{bottom:598.251297px;}
.yf4{bottom:601.227173px;}
.y2a{bottom:606.156281px;}
.y58{bottom:607.250702px;}
.y15c{bottom:608.750702px;}
.y139{bottom:609.500702px;}
.y180{bottom:610.250702px;}
.y118{bottom:612.027145px;}
.y78{bottom:616.250702px;}
.y83{bottom:616.251297px;}
.y1cb{bottom:618.200867px;}
.y29{bottom:624.156281px;}
.y57{bottom:625.250702px;}
.y15b{bottom:626.750702px;}
.y138{bottom:627.500702px;}
.y17f{bottom:628.250702px;}
.y1ab{bottom:629.750702px;}
.y117{bottom:630.027145px;}
.yb2{bottom:633.156281px;}
.y77{bottom:634.250702px;}
.y82{bottom:634.251297px;}
.y1ca{bottom:636.200867px;}
.yf3{bottom:637.227173px;}
.y28{bottom:642.156281px;}
.y19b{bottom:643.250702px;}
.y15a{bottom:644.750702px;}
.y1aa{bottom:647.750702px;}
.y116{bottom:648.027145px;}
.y76{bottom:652.250702px;}
.yd7{bottom:652.251297px;}
.y1c9{bottom:654.200867px;}
.yf2{bottom:655.227173px;}
.y56{bottom:661.250702px;}
.y159{bottom:662.750702px;}
.y137{bottom:665.750702px;}
.yb1{bottom:669.156281px;}
.y75{bottom:670.250702px;}
.yd6{bottom:670.251297px;}
.y1c8{bottom:672.200867px;}
.yf1{bottom:673.227173px;}
.y27{bottom:678.156281px;}
.y17e{bottom:679.250702px;}
.y158{bottom:680.750702px;}
.y136{bottom:683.750702px;}
.y115{bottom:686.427155px;}
.yb0{bottom:687.156281px;}
.y74{bottom:688.250702px;}
.yd5{bottom:688.251297px;}
.y1c7{bottom:690.200867px;}
.yf0{bottom:691.227173px;}
.y19a{bottom:694.250702px;}
.y17d{bottom:697.250702px;}
.y157{bottom:698.750702px;}
.y135{bottom:701.750702px;}
.y114{bottom:704.427155px;}
.yaf{bottom:705.156281px;}
.y55{bottom:706.250702px;}
.yd4{bottom:706.251297px;}
.y1c6{bottom:708.200867px;}
.y199{bottom:712.250702px;}
.y17c{bottom:715.250702px;}
.y134{bottom:719.750702px;}
.y113{bottom:722.427155px;}
.yae{bottom:723.156281px;}
.y54{bottom:724.250702px;}
.yd3{bottom:724.251297px;}
.yef{bottom:727.227173px;}
.y156{bottom:729.500702px;}
.y198{bottom:730.250702px;}
.y1a9{bottom:733.250702px;}
.y112{bottom:740.427155px;}
.yad{bottom:741.156281px;}
.y53{bottom:742.250702px;}
.yd2{bottom:742.251297px;}
.y1c5{bottom:744.200867px;}
.yee{bottom:745.227173px;}
.y155{bottom:747.500702px;}
.y17b{bottom:748.250702px;}
.y1a8{bottom:751.250702px;}
.y3{bottom:752.599495px;}
.y133{bottom:758.000702px;}
.y111{bottom:758.427155px;}
.yac{bottom:759.156281px;}
.y52{bottom:760.250702px;}
.yd1{bottom:760.251297px;}
.y1c4{bottom:762.200867px;}
.yed{bottom:763.227173px;}
.y26{bottom:764.751434px;}
.y154{bottom:765.500702px;}
.y17a{bottom:766.250702px;}
.y132{bottom:776.000702px;}
.y110{bottom:776.427155px;}
.yab{bottom:777.156281px;}
.y51{bottom:778.250702px;}
.yd0{bottom:778.251297px;}
.y1c3{bottom:780.200867px;}
.yec{bottom:781.227173px;}
.y1a7{bottom:782.750885px;}
.y153{bottom:783.500885px;}
.y179{bottom:784.250885px;}
.y131{bottom:794.000885px;}
.y50{bottom:796.250885px;}
.ycf{bottom:796.251343px;}
.y1c2{bottom:798.200867px;}
.y1a6{bottom:800.750885px;}
.y152{bottom:801.500885px;}
.y178{bottom:802.250885px;}
.y25{bottom:808.903839px;}
.y130{bottom:812.000885px;}
.yaa{bottom:813.156281px;}
.y4f{bottom:814.250885px;}
.yce{bottom:814.251343px;}
.y10f{bottom:814.827118px;}
.y1c1{bottom:816.200867px;}
.yeb{bottom:817.227173px;}
.y197{bottom:817.250885px;}
.y1a5{bottom:818.750885px;}
.y4e{bottom:832.250885px;}
.ycd{bottom:832.251343px;}
.y10e{bottom:832.827118px;}
.yea{bottom:835.227173px;}
.y177{bottom:835.250885px;}
.y1a4{bottom:836.750885px;}
.ya9{bottom:849.156281px;}
.y24{bottom:849.403839px;}
.y4d{bottom:850.250885px;}
.ycc{bottom:850.251343px;}
.y10d{bottom:850.827118px;}
.y1c0{bottom:852.200867px;}
.ye9{bottom:853.227173px;}
.y176{bottom:853.250885px;}
.y1a3{bottom:854.750885px;}
.ya8{bottom:867.156281px;}
.y4c{bottom:868.250885px;}
.y10c{bottom:868.827118px;}
.y1bf{bottom:870.200867px;}
.ye8{bottom:871.227173px;}
.y175{bottom:871.250885px;}
.y1a2{bottom:872.750885px;}
.y2{bottom:879.369000px;}
.ya7{bottom:885.156281px;}
.y4b{bottom:886.250885px;}
.y1be{bottom:888.200867px;}
.ye7{bottom:889.227173px;}
.y174{bottom:889.250885px;}
.y23{bottom:889.903839px;}
.ya6{bottom:903.156281px;}
.y4a{bottom:904.250885px;}
.y1bd{bottom:906.200867px;}
.ye6{bottom:907.227173px;}
.y173{bottom:907.250885px;}
.y49{bottom:922.250885px;}
.y1bc{bottom:924.200867px;}
.ye5{bottom:925.227173px;}
.y172{bottom:925.250885px;}
.y22{bottom:930.403839px;}
.ya5{bottom:939.156281px;}
.y48{bottom:940.250885px;}
.y47{bottom:958.250885px;}
.y1{bottom:966.726000px;}
.y21{bottom:975.155823px;}
.y46{bottom:976.250885px;}
.y73{bottom:998.369568px;}
.yd9{bottom:998.370026px;}
.y44{bottom:1014.869568px;}
.yd8{bottom:1014.870117px;}
.h13{height:28.365120px;}
.h7{height:32.130000px;}
.h11{height:35.616000px;}
.h9{height:36.288000px;}
.hf{height:40.068000px;}
.h14{height:42.336000px;}
.h16{height:44.520000px;}
.h10{height:45.360000px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.ha{height:49.896000px;}
.hd{height:52.920000px;}
.h2{height:55.080000px;}
.hc{height:62.328000px;}
.h15{height:62.456399px;}
.h12{height:62.457131px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.hb{height:127.008000px;}
.he{height:1080.000000px;}
.h8{height:1107.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w5{width:756.850500px;}
.w4{width:770.250000px;}
.w3{width:770.350500px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:13.500000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x7{left:115.547253px;}
.x5{left:123.307045px;}
.x8{left:136.807045px;}
.x4{left:203.484001px;}
.xa{left:361.453789px;}
.xb{left:387.425079px;}
.x9{left:400.925262px;}
.x3{left:454.959000px;}
@media print{
.v2{vertical-align:-24.000163pt;}
.v3{vertical-align:-19.199994pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.000651pt;}
.lsc{letter-spacing:-8.266667pt;}
.ls22{letter-spacing:-2.826667pt;}
.ls35{letter-spacing:-2.666667pt;}
.ls2d{letter-spacing:-2.560000pt;}
.ls24{letter-spacing:-2.448000pt;}
.ls1e{letter-spacing:-2.400000pt;}
.ls19{letter-spacing:-2.266667pt;}
.ls10{letter-spacing:-2.261333pt;}
.ls1a{letter-spacing:-2.133333pt;}
.ls1b{letter-spacing:-2.085333pt;}
.lsa{letter-spacing:-1.920000pt;}
.ls21{letter-spacing:-1.866667pt;}
.ls2e{letter-spacing:-1.813333pt;}
.ls30{letter-spacing:-1.768000pt;}
.ls1d{letter-spacing:-1.760000pt;}
.ls9{letter-spacing:-1.706667pt;}
.ls6{letter-spacing:-1.600000pt;}
.ls37{letter-spacing:-1.496000pt;}
.ls1f{letter-spacing:-1.440000pt;}
.ls15{letter-spacing:-1.360000pt;}
.ls2f{letter-spacing:-1.333333pt;}
.ls28{letter-spacing:-1.269333pt;}
.ls32{letter-spacing:-1.226667pt;}
.ls33{letter-spacing:-1.224000pt;}
.ls27{letter-spacing:-1.173333pt;}
.ls17{letter-spacing:-1.133333pt;}
.ls29{letter-spacing:-1.066667pt;}
.ls31{letter-spacing:-1.013333pt;}
.ls26{letter-spacing:-0.997333pt;}
.ls16{letter-spacing:-0.906667pt;}
.ls14{letter-spacing:-0.853333pt;}
.ls12{letter-spacing:-0.800000pt;}
.ls2a{letter-spacing:-0.770667pt;}
.ls1c{letter-spacing:-0.746667pt;}
.ls5{letter-spacing:-0.693333pt;}
.ls23{letter-spacing:-0.589333pt;}
.ls1{letter-spacing:-0.586667pt;}
.ls2{letter-spacing:-0.533333pt;}
.ls4{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.426667pt;}
.ls3{letter-spacing:-0.373333pt;}
.ls13{letter-spacing:-0.293333pt;}
.ls18{letter-spacing:-0.266667pt;}
.ls7{letter-spacing:-0.213333pt;}
.lsb{letter-spacing:-0.106667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.000036pt;}
.ls25{letter-spacing:0.000078pt;}
.ls8{letter-spacing:0.053333pt;}
.ls2b{letter-spacing:0.160000pt;}
.ls34{letter-spacing:0.213333pt;}
.ls36{letter-spacing:0.226667pt;}
.ls11{letter-spacing:0.426667pt;}
.ls20{letter-spacing:0.533333pt;}
.lsf{letter-spacing:0.800000pt;}
.lsd{letter-spacing:0.853333pt;}
.ls38{letter-spacing:1.066667pt;}
.wsd{word-spacing:-12.800000pt;}
.ws4{word-spacing:-12.266667pt;}
.wsf{word-spacing:-11.733333pt;}
.ws20{word-spacing:-11.573333pt;}
.ws1f{word-spacing:-11.520000pt;}
.ws33{word-spacing:-11.360000pt;}
.ws3b{word-spacing:-11.040000pt;}
.ws3a{word-spacing:-10.933333pt;}
.ws46{word-spacing:-10.880000pt;}
.ws28{word-spacing:-10.826667pt;}
.ws1{word-spacing:-10.794667pt;}
.ws43{word-spacing:-10.666667pt;}
.ws21{word-spacing:-10.506667pt;}
.ws19{word-spacing:-10.501333pt;}
.ws2a{word-spacing:-10.400000pt;}
.ws29{word-spacing:-10.346667pt;}
.ws2{word-spacing:-10.208000pt;}
.ws3c{word-spacing:-10.026667pt;}
.ws32{word-spacing:-9.973333pt;}
.ws13{word-spacing:-9.813333pt;}
.ws3d{word-spacing:-9.600000pt;}
.ws1c{word-spacing:-9.546667pt;}
.ws30{word-spacing:-9.440000pt;}
.ws1e{word-spacing:-9.386667pt;}
.ws3{word-spacing:-9.280000pt;}
.ws34{word-spacing:-9.120000pt;}
.ws31{word-spacing:-8.746667pt;}
.wsa{word-spacing:-8.218666pt;}
.ws7{word-spacing:-8.106667pt;}
.ws39{word-spacing:-8.000000pt;}
.ws45{word-spacing:-7.946667pt;}
.ws1d{word-spacing:-7.680000pt;}
.ws22{word-spacing:-7.413333pt;}
.ws2b{word-spacing:-6.986667pt;}
.wsb{word-spacing:-6.574933pt;}
.wsc{word-spacing:-2.666667pt;}
.ws2f{word-spacing:-2.133333pt;}
.ws3f{word-spacing:-1.600000pt;}
.ws14{word-spacing:-0.853333pt;}
.ws36{word-spacing:-0.586667pt;}
.ws11{word-spacing:-0.533333pt;}
.ws17{word-spacing:-0.426667pt;}
.ws42{word-spacing:-0.266667pt;}
.ws47{word-spacing:-0.226667pt;}
.ws44{word-spacing:-0.213333pt;}
.ws9{word-spacing:-0.160000pt;}
.wse{word-spacing:-0.106667pt;}
.ws8{word-spacing:-0.053333pt;}
.ws0{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.213333pt;}
.ws15{word-spacing:0.426667pt;}
.ws2c{word-spacing:0.533333pt;}
.ws2d{word-spacing:0.589333pt;}
.ws38{word-spacing:0.770667pt;}
.ws1b{word-spacing:0.853333pt;}
.ws24{word-spacing:0.906667pt;}
.ws35{word-spacing:0.997333pt;}
.ws25{word-spacing:1.133333pt;}
.ws41{word-spacing:1.224000pt;}
.ws37{word-spacing:1.269333pt;}
.ws23{word-spacing:1.360000pt;}
.ws48{word-spacing:1.496000pt;}
.ws6{word-spacing:1.600000pt;}
.ws5{word-spacing:1.680000pt;}
.ws18{word-spacing:1.706667pt;}
.ws40{word-spacing:1.768000pt;}
.ws10{word-spacing:1.920000pt;}
.ws27{word-spacing:2.085333pt;}
.ws16{word-spacing:2.261333pt;}
.ws26{word-spacing:2.266667pt;}
.ws2e{word-spacing:2.448000pt;}
.ws3e{word-spacing:2.560000pt;}
.ws12{word-spacing:8.266667pt;}
._4{margin-left:-17.280000pt;}
._a{margin-left:-9.813333pt;}
._7{margin-left:-8.461867pt;}
._8{margin-left:-6.730667pt;}
._9{margin-left:-5.683200pt;}
._1{margin-left:-4.480000pt;}
._3{margin-left:-3.360000pt;}
._2{margin-left:-2.432000pt;}
._0{margin-left:-1.525333pt;}
._5{width:1.011200pt;}
._6{width:2.458667pt;}
._d{width:3.794133pt;}
._c{width:8.155752pt;}
._b{width:11.519784pt;}
.fsb{font-size:28.586667pt;}
.fsa{font-size:35.733332pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fsc{font-size:45.333333pt;}
.fs9{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:74.666667pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:12.000000pt;}
.y5{bottom:59.133337pt;}
.y20{bottom:61.163198pt;}
.y45{bottom:61.163864pt;}
.ycb{bottom:82.805598pt;}
.y1e4{bottom:82.845200pt;}
.ye4{bottom:83.776932pt;}
.y87{bottom:83.777069pt;}
.y72{bottom:83.778533pt;}
.ya4{bottom:83.778936pt;}
.y171{bottom:84.445200pt;}
.y12f{bottom:85.357467pt;}
.y151{bottom:85.778533pt;}
.y4{bottom:86.333337pt;}
.y10b{bottom:86.424133pt;}
.y86{bottom:95.777069pt;}
.y42{bottom:95.778533pt;}
.yca{bottom:98.805603pt;}
.y1e3{bottom:98.845205pt;}
.ye3{bottom:99.776937pt;}
.y71{bottom:99.778533pt;}
.ya3{bottom:99.778931pt;}
.y170{bottom:100.445200pt;}
.y12e{bottom:101.357463pt;}
.y150{bottom:101.778533pt;}
.y10a{bottom:102.424133pt;}
.y41{bottom:111.778533pt;}
.yc9{bottom:114.805603pt;}
.y1e2{bottom:114.845205pt;}
.ye2{bottom:115.776937pt;}
.y70{bottom:115.778533pt;}
.ya2{bottom:115.778931pt;}
.y16f{bottom:116.445200pt;}
.y14f{bottom:117.778533pt;}
.y109{bottom:118.424133pt;}
.y1f{bottom:123.790666pt;}
.y40{bottom:127.778533pt;}
.y1bb{bottom:129.111867pt;}
.y1e1{bottom:130.845205pt;}
.ye1{bottom:131.776937pt;}
.y6f{bottom:131.778533pt;}
.ya1{bottom:131.778931pt;}
.y12d{bottom:135.490804pt;}
.y3f{bottom:143.778533pt;}
.y1ba{bottom:145.111867pt;}
.y196{bottom:146.445200pt;}
.yc8{bottom:146.805603pt;}
.y1e0{bottom:146.845205pt;}
.y6e{bottom:147.778533pt;}
.ya0{bottom:147.778931pt;}
.y108{bottom:150.424133pt;}
.y12c{bottom:151.490804pt;}
.y14e{bottom:151.778533pt;}
.y3e{bottom:159.778533pt;}
.y1b9{bottom:161.111867pt;}
.y195{bottom:162.445200pt;}
.y6d{bottom:163.778533pt;}
.y9f{bottom:163.778931pt;}
.y107{bottom:166.424133pt;}
.y12b{bottom:167.490804pt;}
.y14d{bottom:167.778533pt;}
.y88{bottom:168.578532pt;}
.y16{bottom:175.052000pt;}
.y3d{bottom:175.778533pt;}
.y1b8{bottom:177.111867pt;}
.y194{bottom:178.445200pt;}
.yc7{bottom:178.805603pt;}
.y6c{bottom:179.778533pt;}
.y9e{bottom:179.778931pt;}
.y1df{bottom:180.178538pt;}
.y106{bottom:182.424133pt;}
.y12a{bottom:183.490804pt;}
.y14c{bottom:183.778524pt;}
.y1e{bottom:186.238666pt;}
.y15{bottom:186.252002pt;}
.ye0{bottom:190.760132pt;}
.y3c{bottom:191.778524pt;}
.y1b7{bottom:193.111857pt;}
.y193{bottom:194.445190pt;}
.yc6{bottom:194.805603pt;}
.y6b{bottom:195.778402pt;}
.y9d{bottom:195.778931pt;}
.y1de{bottom:196.178406pt;}
.y1d{bottom:197.438668pt;}
.y14{bottom:197.452004pt;}
.y14b{bottom:199.778402pt;}
.y89{bottom:200.578532pt;}
.y16e{bottom:207.778402pt;}
.y3b{bottom:207.778524pt;}
.y1c{bottom:208.638670pt;}
.y13{bottom:208.651996pt;}
.y1b6{bottom:209.111735pt;}
.y192{bottom:210.445068pt;}
.yc5{bottom:210.805603pt;}
.y6a{bottom:211.778402pt;}
.y9c{bottom:211.778931pt;}
.y1dd{bottom:212.178406pt;}
.y105{bottom:214.424133pt;}
.y129{bottom:217.624125pt;}
.ydf{bottom:222.760132pt;}
.y16d{bottom:223.778402pt;}
.y3a{bottom:223.778524pt;}
.y191{bottom:226.445068pt;}
.yc4{bottom:226.805603pt;}
.y69{bottom:227.778402pt;}
.y9b{bottom:227.778931pt;}
.y1dc{bottom:228.178406pt;}
.y104{bottom:230.424133pt;}
.y1b{bottom:231.038664pt;}
.y12{bottom:231.052000pt;}
.y128{bottom:233.624125pt;}
.y14a{bottom:233.778402pt;}
.y1b5{bottom:238.445068pt;}
.y16c{bottom:239.778402pt;}
.y39{bottom:239.778524pt;}
.y1a{bottom:242.238666pt;}
.y11{bottom:242.252002pt;}
.y190{bottom:242.445068pt;}
.yc3{bottom:242.805603pt;}
.y68{bottom:243.778402pt;}
.y9a{bottom:243.778931pt;}
.y1db{bottom:244.178406pt;}
.y103{bottom:246.424133pt;}
.y127{bottom:249.624125pt;}
.y149{bottom:249.778402pt;}
.y19{bottom:253.438668pt;}
.y10{bottom:253.451999pt;}
.y1b4{bottom:254.445068pt;}
.yde{bottom:254.760132pt;}
.y18f{bottom:258.445068pt;}
.yc2{bottom:258.805603pt;}
.y67{bottom:259.778402pt;}
.y99{bottom:259.778931pt;}
.y1da{bottom:260.178406pt;}
.y102{bottom:262.424133pt;}
.y126{bottom:265.624125pt;}
.y148{bottom:265.778402pt;}
.y16b{bottom:267.111735pt;}
.y1b3{bottom:270.445068pt;}
.ydd{bottom:270.760132pt;}
.y38{bottom:271.777995pt;}
.y18e{bottom:274.445068pt;}
.yc1{bottom:274.805603pt;}
.y66{bottom:275.778402pt;}
.y98{bottom:275.778931pt;}
.y18{bottom:275.838667pt;}
.yf{bottom:275.852001pt;}
.y1d9{bottom:276.178406pt;}
.y101{bottom:278.424133pt;}
.y125{bottom:281.624125pt;}
.y147{bottom:281.778402pt;}
.y16a{bottom:283.111735pt;}
.y1b2{bottom:286.445068pt;}
.y17{bottom:287.038667pt;}
.ye{bottom:287.052000pt;}
.yc0{bottom:290.805603pt;}
.y65{bottom:291.778402pt;}
.y97{bottom:291.778931pt;}
.y124{bottom:297.624125pt;}
.y146{bottom:297.778402pt;}
.y169{bottom:299.111735pt;}
.ydc{bottom:302.760132pt;}
.y18d{bottom:305.111735pt;}
.ybf{bottom:306.805603pt;}
.y64{bottom:307.778402pt;}
.y96{bottom:307.778931pt;}
.yd{bottom:309.452000pt;}
.y1d8{bottom:309.511739pt;}
.y100{bottom:310.424133pt;}
.y37{bottom:314.805603pt;}
.y168{bottom:315.111735pt;}
.y1b1{bottom:315.778402pt;}
.y18c{bottom:321.111735pt;}
.ybe{bottom:322.805603pt;}
.y63{bottom:323.778402pt;}
.y95{bottom:323.778931pt;}
.y1d7{bottom:325.511739pt;}
.yff{bottom:326.424133pt;}
.y36{bottom:330.805603pt;}
.y123{bottom:331.757467pt;}
.y145{bottom:331.778402pt;}
.ydb{bottom:334.760132pt;}
.y18b{bottom:337.111735pt;}
.ybd{bottom:338.805603pt;}
.y62{bottom:339.778402pt;}
.y94{bottom:339.778931pt;}
.y1d6{bottom:341.511739pt;}
.yfe{bottom:342.424133pt;}
.y167{bottom:342.445068pt;}
.yc{bottom:343.809333pt;}
.y122{bottom:347.757467pt;}
.y144{bottom:347.778402pt;}
.y18a{bottom:353.111735pt;}
.ybc{bottom:354.805583pt;}
.y61{bottom:355.778402pt;}
.y93{bottom:355.778931pt;}
.y1d5{bottom:357.511719pt;}
.yfd{bottom:358.424154pt;}
.y166{bottom:358.445068pt;}
.yb{bottom:362.706666pt;}
.y35{bottom:362.805583pt;}
.y121{bottom:363.757487pt;}
.y143{bottom:363.778402pt;}
.yda{bottom:366.760132pt;}
.y189{bottom:369.111735pt;}
.ybb{bottom:370.805583pt;}
.y60{bottom:371.778402pt;}
.y92{bottom:371.778931pt;}
.y1d4{bottom:373.511719pt;}
.yfc{bottom:374.424154pt;}
.y165{bottom:374.445068pt;}
.y34{bottom:378.805583pt;}
.y120{bottom:379.757487pt;}
.y1a1{bottom:385.111735pt;}
.yba{bottom:386.805583pt;}
.y81{bottom:387.778402pt;}
.y91{bottom:387.778931pt;}
.y1d3{bottom:389.511719pt;}
.y164{bottom:390.445068pt;}
.y1b0{bottom:391.778402pt;}
.y33{bottom:394.805583pt;}
.y11f{bottom:395.757487pt;}
.y142{bottom:397.778402pt;}
.y188{bottom:399.778402pt;}
.y1a0{bottom:401.111735pt;}
.yb9{bottom:402.805583pt;}
.y5f{bottom:403.778402pt;}
.y90{bottom:403.778931pt;}
.y1d2{bottom:405.511719pt;}
.yfb{bottom:406.424154pt;}
.y1af{bottom:407.778402pt;}
.y32{bottom:410.805583pt;}
.y11e{bottom:411.757487pt;}
.y141{bottom:413.778402pt;}
.y187{bottom:415.778402pt;}
.y163{bottom:417.778402pt;}
.y80{bottom:419.778402pt;}
.y8f{bottom:419.778931pt;}
.yfa{bottom:422.424154pt;}
.y1ae{bottom:423.778402pt;}
.y31{bottom:426.805583pt;}
.y11d{bottom:427.757487pt;}
.y140{bottom:429.778402pt;}
.y19f{bottom:430.445068pt;}
.ya{bottom:430.990669pt;}
.y186{bottom:431.778402pt;}
.y162{bottom:433.778402pt;}
.yb8{bottom:434.805583pt;}
.y7f{bottom:435.778402pt;}
.y8e{bottom:435.778931pt;}
.y1d1{bottom:437.511719pt;}
.yf9{bottom:438.424154pt;}
.y1ad{bottom:439.778402pt;}
.y30{bottom:442.805583pt;}
.y5e{bottom:443.778402pt;}
.y13f{bottom:445.778402pt;}
.y19e{bottom:446.445068pt;}
.y9{bottom:446.990669pt;}
.y185{bottom:447.778402pt;}
.y161{bottom:449.778402pt;}
.y7e{bottom:451.778402pt;}
.y8d{bottom:451.778931pt;}
.y1d0{bottom:453.511719pt;}
.yf8{bottom:454.424154pt;}
.y1ac{bottom:455.778402pt;}
.y2f{bottom:458.805583pt;}
.y5d{bottom:459.778402pt;}
.y13e{bottom:461.778402pt;}
.y11c{bottom:461.890788pt;}
.y19d{bottom:462.445068pt;}
.y8{bottom:462.990669pt;}
.y184{bottom:463.778402pt;}
.y160{bottom:465.778402pt;}
.yb7{bottom:466.805583pt;}
.y7d{bottom:467.778402pt;}
.y8c{bottom:467.778931pt;}
.y1cf{bottom:469.511719pt;}
.yf7{bottom:470.424154pt;}
.y2e{bottom:474.805583pt;}
.y5c{bottom:475.778402pt;}
.y13d{bottom:477.778402pt;}
.y11b{bottom:477.890788pt;}
.y19c{bottom:478.445068pt;}
.y7{bottom:478.990666pt;}
.y15f{bottom:481.778402pt;}
.yb6{bottom:482.805583pt;}
.y7c{bottom:483.778402pt;}
.y8b{bottom:483.778931pt;}
.y1ce{bottom:485.511719pt;}
.y2d{bottom:490.805583pt;}
.y5b{bottom:491.778402pt;}
.y13c{bottom:493.778402pt;}
.y11a{bottom:493.890788pt;}
.y183{bottom:494.445068pt;}
.y6{bottom:494.990666pt;}
.y15e{bottom:497.778402pt;}
.yb5{bottom:498.805583pt;}
.y7b{bottom:499.778402pt;}
.y8a{bottom:499.778931pt;}
.y1cd{bottom:501.511719pt;}
.yf6{bottom:502.424154pt;}
.y2c{bottom:506.805583pt;}
.y5a{bottom:507.778402pt;}
.y13b{bottom:509.778402pt;}
.y182{bottom:510.445068pt;}
.yb4{bottom:514.805583pt;}
.y7a{bottom:515.778402pt;}
.y85{bottom:515.778931pt;}
.y1cc{bottom:517.511719pt;}
.yf5{bottom:518.424154pt;}
.y2b{bottom:522.805583pt;}
.y59{bottom:523.778402pt;}
.y15d{bottom:525.111735pt;}
.y13a{bottom:525.778402pt;}
.y181{bottom:526.445068pt;}
.y119{bottom:528.024129pt;}
.yb3{bottom:530.805583pt;}
.y79{bottom:531.778402pt;}
.y84{bottom:531.778931pt;}
.yf4{bottom:534.424154pt;}
.y2a{bottom:538.805583pt;}
.y58{bottom:539.778402pt;}
.y15c{bottom:541.111735pt;}
.y139{bottom:541.778402pt;}
.y180{bottom:542.445068pt;}
.y118{bottom:544.024129pt;}
.y78{bottom:547.778402pt;}
.y83{bottom:547.778931pt;}
.y1cb{bottom:549.511882pt;}
.y29{bottom:554.805583pt;}
.y57{bottom:555.778402pt;}
.y15b{bottom:557.111735pt;}
.y138{bottom:557.778402pt;}
.y17f{bottom:558.445068pt;}
.y1ab{bottom:559.778402pt;}
.y117{bottom:560.024129pt;}
.yb2{bottom:562.805583pt;}
.y77{bottom:563.778402pt;}
.y82{bottom:563.778931pt;}
.y1ca{bottom:565.511882pt;}
.yf3{bottom:566.424154pt;}
.y28{bottom:570.805583pt;}
.y19b{bottom:571.778402pt;}
.y15a{bottom:573.111735pt;}
.y1aa{bottom:575.778402pt;}
.y116{bottom:576.024129pt;}
.y76{bottom:579.778402pt;}
.yd7{bottom:579.778931pt;}
.y1c9{bottom:581.511882pt;}
.yf2{bottom:582.424154pt;}
.y56{bottom:587.778402pt;}
.y159{bottom:589.111735pt;}
.y137{bottom:591.778402pt;}
.yb1{bottom:594.805583pt;}
.y75{bottom:595.778402pt;}
.yd6{bottom:595.778931pt;}
.y1c8{bottom:597.511882pt;}
.yf1{bottom:598.424154pt;}
.y27{bottom:602.805583pt;}
.y17e{bottom:603.778402pt;}
.y158{bottom:605.111735pt;}
.y136{bottom:607.778402pt;}
.y115{bottom:610.157471pt;}
.yb0{bottom:610.805583pt;}
.y74{bottom:611.778402pt;}
.yd5{bottom:611.778931pt;}
.y1c7{bottom:613.511882pt;}
.yf0{bottom:614.424154pt;}
.y19a{bottom:617.111735pt;}
.y17d{bottom:619.778402pt;}
.y157{bottom:621.111735pt;}
.y135{bottom:623.778402pt;}
.y114{bottom:626.157471pt;}
.yaf{bottom:626.805583pt;}
.y55{bottom:627.778402pt;}
.yd4{bottom:627.778931pt;}
.y1c6{bottom:629.511882pt;}
.y199{bottom:633.111735pt;}
.y17c{bottom:635.778402pt;}
.y134{bottom:639.778402pt;}
.y113{bottom:642.157471pt;}
.yae{bottom:642.805583pt;}
.y54{bottom:643.778402pt;}
.yd3{bottom:643.778931pt;}
.yef{bottom:646.424154pt;}
.y156{bottom:648.445068pt;}
.y198{bottom:649.111735pt;}
.y1a9{bottom:651.778402pt;}
.y112{bottom:658.157471pt;}
.yad{bottom:658.805583pt;}
.y53{bottom:659.778402pt;}
.yd2{bottom:659.778931pt;}
.y1c5{bottom:661.511882pt;}
.yee{bottom:662.424154pt;}
.y155{bottom:664.445068pt;}
.y17b{bottom:665.111735pt;}
.y1a8{bottom:667.778402pt;}
.y3{bottom:668.977329pt;}
.y133{bottom:673.778402pt;}
.y111{bottom:674.157471pt;}
.yac{bottom:674.805583pt;}
.y52{bottom:675.778402pt;}
.yd1{bottom:675.778931pt;}
.y1c4{bottom:677.511882pt;}
.yed{bottom:678.424154pt;}
.y26{bottom:679.779053pt;}
.y154{bottom:680.445068pt;}
.y17a{bottom:681.111735pt;}
.y132{bottom:689.778402pt;}
.y110{bottom:690.157471pt;}
.yab{bottom:690.805583pt;}
.y51{bottom:691.778402pt;}
.yd0{bottom:691.778931pt;}
.y1c3{bottom:693.511882pt;}
.yec{bottom:694.424154pt;}
.y1a7{bottom:695.778564pt;}
.y153{bottom:696.445231pt;}
.y179{bottom:697.111898pt;}
.y131{bottom:705.778564pt;}
.y50{bottom:707.778564pt;}
.ycf{bottom:707.778971pt;}
.y1c2{bottom:709.511882pt;}
.y1a6{bottom:711.778564pt;}
.y152{bottom:712.445231pt;}
.y178{bottom:713.111898pt;}
.y25{bottom:719.025635pt;}
.y130{bottom:721.778564pt;}
.yaa{bottom:722.805583pt;}
.y4f{bottom:723.778564pt;}
.yce{bottom:723.778971pt;}
.y10f{bottom:724.290771pt;}
.y1c1{bottom:725.511882pt;}
.yeb{bottom:726.424154pt;}
.y197{bottom:726.445231pt;}
.y1a5{bottom:727.778564pt;}
.y4e{bottom:739.778564pt;}
.ycd{bottom:739.778971pt;}
.y10e{bottom:740.290771pt;}
.yea{bottom:742.424154pt;}
.y177{bottom:742.445231pt;}
.y1a4{bottom:743.778564pt;}
.ya9{bottom:754.805583pt;}
.y24{bottom:755.025635pt;}
.y4d{bottom:755.778564pt;}
.ycc{bottom:755.778971pt;}
.y10d{bottom:756.290771pt;}
.y1c0{bottom:757.511882pt;}
.ye9{bottom:758.424154pt;}
.y176{bottom:758.445231pt;}
.y1a3{bottom:759.778564pt;}
.ya8{bottom:770.805583pt;}
.y4c{bottom:771.778564pt;}
.y10c{bottom:772.290771pt;}
.y1bf{bottom:773.511882pt;}
.ye8{bottom:774.424154pt;}
.y175{bottom:774.445231pt;}
.y1a2{bottom:775.778564pt;}
.y2{bottom:781.661334pt;}
.ya7{bottom:786.805583pt;}
.y4b{bottom:787.778564pt;}
.y1be{bottom:789.511882pt;}
.ye7{bottom:790.424154pt;}
.y174{bottom:790.445231pt;}
.y23{bottom:791.025635pt;}
.ya6{bottom:802.805583pt;}
.y4a{bottom:803.778564pt;}
.y1bd{bottom:805.511882pt;}
.ye6{bottom:806.424154pt;}
.y173{bottom:806.445231pt;}
.y49{bottom:819.778564pt;}
.y1bc{bottom:821.511882pt;}
.ye5{bottom:822.424154pt;}
.y172{bottom:822.445231pt;}
.y22{bottom:827.025635pt;}
.ya5{bottom:834.805583pt;}
.y48{bottom:835.778564pt;}
.y47{bottom:851.778564pt;}
.y1{bottom:859.312000pt;}
.y21{bottom:866.805176pt;}
.y46{bottom:867.778564pt;}
.y73{bottom:887.439616pt;}
.yd9{bottom:887.440023pt;}
.y44{bottom:902.106283pt;}
.yd8{bottom:902.106771pt;}
.h13{height:25.213440pt;}
.h7{height:28.560000pt;}
.h11{height:31.658667pt;}
.h9{height:32.256000pt;}
.hf{height:35.616000pt;}
.h14{height:37.632000pt;}
.h16{height:39.573333pt;}
.h10{height:40.320000pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.ha{height:44.352000pt;}
.hd{height:47.040000pt;}
.h2{height:48.960000pt;}
.hc{height:55.402667pt;}
.h15{height:55.516799pt;}
.h12{height:55.517450pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.hb{height:112.896000pt;}
.he{height:960.000000pt;}
.h8{height:984.000000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w5{width:672.756000pt;}
.w4{width:684.666667pt;}
.w3{width:684.756000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:12.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x7{left:102.708669pt;}
.x5{left:109.606262pt;}
.x8{left:121.606262pt;}
.x4{left:180.874667pt;}
.xa{left:321.292257pt;}
.xb{left:344.377848pt;}
.x9{left:356.378011pt;}
.x3{left:404.408000pt;}
}




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