
    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_8a08f5b06366afcaf3510bb9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_9a38780df3b9b4aea185f581.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_1d231d96c5abf6a5a776c957.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9{transform:matrix(0.077597,-0.237423,0.237681,0.077509,0,0);-ms-transform:matrix(0.077597,-0.237423,0.237681,0.077509,0,0);-webkit-transform:matrix(0.077597,-0.237423,0.237681,0.077509,0,0);}
.m8{transform:matrix(0.111509,-0.223572,0.223814,0.111389,0,0);-ms-transform:matrix(0.111509,-0.223572,0.223814,0.111389,0,0);-webkit-transform:matrix(0.111509,-0.223572,0.223814,0.111389,0,0);}
.m7{transform:matrix(0.115381,-0.221605,0.221847,0.115257,0,0);-ms-transform:matrix(0.115381,-0.221605,0.221847,0.115257,0,0);-webkit-transform:matrix(0.115381,-0.221605,0.221847,0.115257,0,0);}
.m6{transform:matrix(0.123428,-0.217247,0.217484,0.123291,0,0);-ms-transform:matrix(0.123428,-0.217247,0.217484,0.123291,0,0);-webkit-transform:matrix(0.123428,-0.217247,0.217484,0.123291,0,0);}
.mb{transform:matrix(0.124228,-0.216794,0.217027,0.124094,0,0);-ms-transform:matrix(0.124228,-0.216794,0.217027,0.124094,0,0);-webkit-transform:matrix(0.124228,-0.216794,0.217027,0.124094,0,0);}
.mc{transform:matrix(0.135920,0.209691,-0.209920,0.135770,0,0);-ms-transform:matrix(0.135920,0.209691,-0.209920,0.135770,0,0);-webkit-transform:matrix(0.135920,0.209691,-0.209920,0.135770,0,0);}
.m2{transform:matrix(0.149788,0.200063,-0.200280,0.149626,0,0);-ms-transform:matrix(0.149788,0.200063,-0.200280,0.149626,0,0);-webkit-transform:matrix(0.149788,0.200063,-0.200280,0.149626,0,0);}
.m5{transform:matrix(0.206657,0.140867,-0.141017,0.206432,0,0);-ms-transform:matrix(0.206657,0.140867,-0.141017,0.206432,0,0);-webkit-transform:matrix(0.206657,0.140867,-0.141017,0.206432,0,0);}
.me{transform:matrix(0.216698,0.124946,-0.125080,0.216460,0,0);-ms-transform:matrix(0.216698,0.124946,-0.125080,0.216460,0,0);-webkit-transform:matrix(0.216698,0.124946,-0.125080,0.216460,0,0);}
.mf{transform:matrix(0.217459,-0.123613,0.123746,0.217225,0,0);-ms-transform:matrix(0.217459,-0.123613,0.123746,0.217225,0,0);-webkit-transform:matrix(0.217459,-0.123613,0.123746,0.217225,0,0);}
.md{transform:matrix(0.223801,-0.111778,0.111898,0.223559,0,0);-ms-transform:matrix(0.223801,-0.111778,0.111898,0.223559,0,0);-webkit-transform:matrix(0.223801,-0.111778,0.111898,0.223559,0,0);}
.m4{transform:matrix(0.227008,-0.073564,0.083878,0.235509,0,0);-ms-transform:matrix(0.227008,-0.073564,0.083878,0.235509,0,0);-webkit-transform:matrix(0.227008,-0.073564,0.083878,0.235509,0,0);}
.ma{transform:matrix(0.237336,0.079234,-0.079322,0.237082,0,0);-ms-transform:matrix(0.237336,0.079234,-0.079322,0.237082,0,0);-webkit-transform:matrix(0.237336,0.079234,-0.079322,0.237082,0,0);}
.m3{transform:matrix(0.250270,0.000612,-0.000612,0.249999,0,0);-ms-transform:matrix(0.250270,0.000612,-0.000612,0.249999,0,0);-webkit-transform:matrix(0.250270,0.000612,-0.000612,0.249999,0,0);}
.m0{transform:matrix(0.250271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250271,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250272,0.000000,0.000000,0.250000,0,0);}
.v11{vertical-align:-45.505200px;}
.v1{vertical-align:-43.397424px;}
.v5{vertical-align:-35.454600px;}
.v15{vertical-align:-31.058400px;}
.v19{vertical-align:-28.129200px;}
.v2{vertical-align:-26.317800px;}
.vd{vertical-align:-16.658779px;}
.v3{vertical-align:-11.736600px;}
.v1a{vertical-align:-10.126200px;}
.v12{vertical-align:-5.625600px;}
.vc{vertical-align:-3.506357px;}
.v6{vertical-align:-1.318200px;}
.v0{vertical-align:0.000000px;}
.v18{vertical-align:2.250600px;}
.v4{vertical-align:3.307200px;}
.ve{vertical-align:7.839187px;}
.v1b{vertical-align:9.468600px;}
.v8{vertical-align:11.286600px;}
.v13{vertical-align:14.160600px;}
.v17{vertical-align:16.314600px;}
.vb{vertical-align:17.355000px;}
.vf{vertical-align:22.705800px;}
.v10{vertical-align:26.159400px;}
.v7{vertical-align:35.501400px;}
.v9{vertical-align:36.849000px;}
.v16{vertical-align:42.268200px;}
.va{vertical-align:46.156200px;}
.v14{vertical-align:47.564400px;}
.ls0{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.000006px;}
.ls9{letter-spacing:0.000027px;}
.ls2{letter-spacing:0.000045px;}
.ls1d{letter-spacing:0.000071px;}
.ls11{letter-spacing:0.000078px;}
.lsc{letter-spacing:0.000094px;}
.ls12{letter-spacing:0.000095px;}
.ls19{letter-spacing:0.000116px;}
.ls3{letter-spacing:0.000118px;}
.ls16{letter-spacing:0.000128px;}
.ls5{letter-spacing:0.000131px;}
.ls4{letter-spacing:0.000155px;}
.ls6{letter-spacing:0.000156px;}
.ls1b{letter-spacing:0.000170px;}
.ls8{letter-spacing:0.000184px;}
.ls1a{letter-spacing:0.000192px;}
.ls13{letter-spacing:0.000206px;}
.ls15{letter-spacing:0.000229px;}
.lsa{letter-spacing:0.000240px;}
.ls1c{letter-spacing:0.000241px;}
.lsf{letter-spacing:0.000268px;}
.ls7{letter-spacing:0.000274px;}
.lsb{letter-spacing:0.000338px;}
.lse{letter-spacing:0.000400px;}
.ls1{letter-spacing:0.000405px;}
.lsd{letter-spacing:0.000454px;}
.ls10{letter-spacing:0.000664px;}
.ls17{letter-spacing:65.507950px;}
.ls18{letter-spacing:112.795313px;}
.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;}
}
.wsa{word-spacing:-10.246486px;}
.wsf{word-spacing:-10.013096px;}
.wse{word-spacing:-10.011954px;}
.wsd{word-spacing:-10.011873px;}
.wsc{word-spacing:-10.011493px;}
.ws11{word-spacing:-10.011476px;}
.ws15{word-spacing:-10.010915px;}
.ws8{word-spacing:-10.010239px;}
.wsb{word-spacing:-10.006657px;}
.ws1c{word-spacing:-10.006075px;}
.ws27{word-spacing:-10.005964px;}
.ws1b{word-spacing:-10.005906px;}
.ws19{word-spacing:-10.005452px;}
.ws10{word-spacing:-10.004455px;}
.ws9{word-spacing:-10.003317px;}
.ws0{word-spacing:-10.003287px;}
.ws3{word-spacing:0.000000px;}
.ws5{word-spacing:2.974612px;}
.ws13{word-spacing:10.129662px;}
.ws25{word-spacing:13.276853px;}
.ws22{word-spacing:15.822295px;}
.ws4{word-spacing:25.039711px;}
.ws6{word-spacing:25.836248px;}
.ws14{word-spacing:26.283364px;}
.ws1d{word-spacing:27.319642px;}
.ws1a{word-spacing:32.731779px;}
.ws1{word-spacing:36.077955px;}
.ws17{word-spacing:37.439201px;}
.ws16{word-spacing:47.452767px;}
.ws28{word-spacing:64.257031px;}
.ws29{word-spacing:85.634675px;}
.ws23{word-spacing:91.947637px;}
.ws2a{word-spacing:95.199115px;}
.ws1f{word-spacing:97.783516px;}
.ws21{word-spacing:111.002797px;}
.ws1e{word-spacing:116.624108px;}
.ws26{word-spacing:117.701141px;}
.ws18{word-spacing:145.960964px;}
.ws12{word-spacing:166.921626px;}
.ws20{word-spacing:299.016742px;}
.ws2b{word-spacing:339.116906px;}
.ws2{word-spacing:342.216149px;}
.ws24{word-spacing:597.759547px;}
.ws7{word-spacing:700.247933px;}
._1{margin-left:-6.416815px;}
._3{margin-left:-1.986570px;}
._2{width:76.819857px;}
._4{width:202.232944px;}
._0{width:2661.134788px;}
.fc4{color:rgb(98,160,234);}
.fc3{color:transparent;}
.fc1{color:rgb(237,51,59);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(99,69,44);}
.fs0{font-size:36.004800px;}
.fs3{font-size:36.004908px;}
.fsa{font-size:36.009005px;}
.fsd{font-size:36.012594px;}
.fse{font-size:36.014226px;}
.fsf{font-size:36.014435px;}
.fs5{font-size:36.016931px;}
.fs2{font-size:36.029823px;}
.fsc{font-size:36.032258px;}
.fsb{font-size:36.034275px;}
.fs6{font-size:36.034336px;}
.fs7{font-size:36.035704px;}
.fs8{font-size:36.035997px;}
.fs9{font-size:36.040106px;}
.fs4{font-size:36.880148px;}
.fs1{font-size:48.006000px;}
.y0{bottom:0.000000px;}
.ycc{bottom:5.005800px;}
.y5f{bottom:7.161000px;}
.y1d{bottom:9.143700px;}
.y1e{bottom:11.414700px;}
.y7e{bottom:17.377200px;}
.y84{bottom:18.011550px;}
.y7d{bottom:18.243600px;}
.y8{bottom:18.773250px;}
.y1b{bottom:19.351050px;}
.y3b{bottom:19.810800px;}
.y10{bottom:23.637000px;}
.y83{bottom:25.018500px;}
.y16{bottom:25.402350px;}
.y1c{bottom:26.644650px;}
.y11d{bottom:27.602550px;}
.y81{bottom:28.372950px;}
.y70{bottom:28.884750px;}
.y107{bottom:30.040050px;}
.y94{bottom:30.184050px;}
.y7f{bottom:30.604800px;}
.y80{bottom:30.904800px;}
.yf1{bottom:31.692300px;}
.y82{bottom:32.697900px;}
.y85{bottom:32.795100px;}
.y110{bottom:36.196500px;}
.y1a{bottom:37.374000px;}
.y124{bottom:38.529750px;}
.y18{bottom:38.543700px;}
.y14{bottom:41.002800px;}
.y117{bottom:41.681550px;}
.y11c{bottom:41.948100px;}
.y93{bottom:42.181350px;}
.y96{bottom:43.337700px;}
.y3a{bottom:43.942050px;}
.yf0{bottom:45.053400px;}
.y86{bottom:45.734250px;}
.y112{bottom:46.463400px;}
.y11b{bottom:47.292750px;}
.ya3{bottom:47.814150px;}
.yff{bottom:48.402150px;}
.y56{bottom:50.116350px;}
.y95{bottom:50.933850px;}
.y74{bottom:51.135150px;}
.y75{bottom:52.609650px;}
.y11e{bottom:53.621550px;}
.yef{bottom:53.913750px;}
.y106{bottom:54.674250px;}
.y125{bottom:54.777150px;}
.y19{bottom:54.859800px;}
.y121{bottom:55.379700px;}
.y122{bottom:55.520250px;}
.yaa{bottom:55.957350px;}
.y99{bottom:55.997250px;}
.y7c{bottom:56.289000px;}
.y55{bottom:57.317250px;}
.y111{bottom:60.949800px;}
.y10a{bottom:61.066500px;}
.y118{bottom:61.934250px;}
.y7a{bottom:62.428200px;}
.y9b{bottom:62.546700px;}
.y77{bottom:63.061050px;}
.yd1{bottom:63.391650px;}
.y79{bottom:63.412650px;}
.y71{bottom:63.483000px;}
.y11f{bottom:63.748050px;}
.y78{bottom:63.834600px;}
.y128{bottom:64.628850px;}
.ya4{bottom:64.901850px;}
.y98{bottom:65.092050px;}
.y10b{bottom:66.969150px;}
.y54{bottom:67.515600px;}
.ya2{bottom:67.743000px;}
.ya9{bottom:67.856700px;}
.y126{bottom:68.032800px;}
.yfe{bottom:73.155450px;}
.y97{bottom:73.800750px;}
.y76{bottom:74.541150px;}
.y53{bottom:74.716500px;}
.y72{bottom:75.015750px;}
.y9a{bottom:76.437000px;}
.yd2{bottom:77.877900px;}
.yab{bottom:78.264300px;}
.y10c{bottom:78.389400px;}
.y73{bottom:79.375650px;}
.y120{bottom:80.062650px;}
.yea{bottom:81.463500px;}
.y10f{bottom:83.171250px;}
.yb5{bottom:83.529300px;}
.y119{bottom:85.562250px;}
.ya5{bottom:86.913450px;}
.y9d{bottom:88.782450px;}
.y127{bottom:91.515450px;}
.y3c{bottom:92.689950px;}
.yb4{bottom:93.369000px;}
.yb0{bottom:95.688450px;}
.y9c{bottom:97.733700px;}
.ya8{bottom:97.891950px;}
.y15{bottom:101.719200px;}
.y9e{bottom:101.824050px;}
.yb3{bottom:103.327650px;}
.y10d{bottom:103.423950px;}
.yd4{bottom:104.529900px;}
.yb1{bottom:107.511300px;}
.y69{bottom:108.211650px;}
.y3d{bottom:109.567200px;}
.yb2{bottom:111.048600px;}
.y13{bottom:111.859800px;}
.yb6{bottom:112.406850px;}
.y40{bottom:112.899600px;}
.y6b{bottom:113.272050px;}
.y9f{bottom:114.785700px;}
.yb7{bottom:115.006500px;}
.y6e{bottom:116.084850px;}
.ya0{bottom:118.752000px;}
.y88{bottom:118.961400px;}
.yac{bottom:119.894700px;}
.y39{bottom:121.614150px;}
.y6a{bottom:121.710600px;}
.y12{bottom:122.505150px;}
.y89{bottom:123.444000px;}
.ya7{bottom:124.168200px;}
.y3e{bottom:125.319150px;}
.y38{bottom:125.722800px;}
.y66{bottom:126.492450px;}
.y20{bottom:128.786700px;}
.y10e{bottom:130.005600px;}
.y3f{bottom:130.907850px;}
.y116{bottom:131.412150px;}
.y1f{bottom:132.639300px;}
.ya6{bottom:133.473600px;}
.y67{bottom:135.212550px;}
.y8a{bottom:137.962200px;}
.y6f{bottom:138.095550px;}
.y11{bottom:139.950300px;}
.y6c{bottom:140.728800px;}
.yad{bottom:141.975750px;}
.y68{bottom:143.510400px;}
.y65{bottom:143.588400px;}
.yfd{bottom:145.727400px;}
.yd0{bottom:146.483850px;}
.yae{bottom:146.898300px;}
.y63{bottom:147.013500px;}
.y33{bottom:150.694350px;}
.y87{bottom:151.873500px;}
.y113{bottom:152.789850px;}
.y109{bottom:153.071400px;}
.ycf{bottom:153.684750px;}
.y8b{bottom:153.757200px;}
.y115{bottom:157.009200px;}
.y92{bottom:160.619250px;}
.y91{bottom:160.857000px;}
.y21{bottom:161.545050px;}
.y64{bottom:161.944650px;}
.y24{bottom:163.307250px;}
.y6d{bottom:164.536650px;}
.y32{bottom:164.629050px;}
.y36{bottom:165.121200px;}
.y114{bottom:165.166500px;}
.ybf{bottom:165.525450px;}
.y8e{bottom:167.576700px;}
.y22{bottom:169.749000px;}
.y90{bottom:173.512500px;}
.y8d{bottom:174.725550px;}
.y25{bottom:175.362150px;}
.yfa{bottom:176.387700px;}
.y23{bottom:177.350850px;}
.y108{bottom:178.246650px;}
.ycb{bottom:178.334400px;}
.y8c{bottom:182.451450px;}
.y37{bottom:182.772000px;}
.y31{bottom:184.178400px;}
.yca{bottom:185.535300px;}
.y8f{bottom:185.945700px;}
.yc0{bottom:190.058250px;}
.y62{bottom:191.751000px;}
.yc4{bottom:196.613250px;}
.y34{bottom:197.187900px;}
.y35{bottom:197.188050px;}
.yd3{bottom:203.683500px;}
.y57{bottom:207.366450px;}
.yf4{bottom:207.496500px;}
.yfb{bottom:207.751200px;}
.y105{bottom:220.769100px;}
.yf3{bottom:221.560800px;}
.y5e{bottom:223.962300px;}
.yf2{bottom:238.297350px;}
.y3{bottom:240.766650px;}
.y104{bottom:241.411650px;}
.y2{bottom:247.967700px;}
.y30{bottom:251.121000px;}
.y59{bottom:255.589650px;}
.yee{bottom:262.347450px;}
.y58{bottom:262.790550px;}
.y123{bottom:265.821000px;}
.yf8{bottom:268.741650px;}
.yf9{bottom:272.728500px;}
.y42{bottom:276.302100px;}
.yc2{bottom:276.316950px;}
.yed{bottom:279.595350px;}
.y44{bottom:286.695450px;}
.yfc{bottom:288.902400px;}
.yec{bottom:289.632150px;}
.yc3{bottom:292.338150px;}
.y6{bottom:297.501000px;}
.y5{bottom:304.702050px;}
.y43{bottom:307.215300px;}
.yeb{bottom:308.885700px;}
.y5d{bottom:310.155450px;}
.y7b{bottom:312.141000px;}
.ya1{bottom:314.419500px;}
.y103{bottom:317.303400px;}
.y5c{bottom:317.356500px;}
.y46{bottom:318.275400px;}
.y102{bottom:323.632200px;}
.y4{bottom:326.238600px;}
.yc6{bottom:332.326050px;}
.y47{bottom:334.896750px;}
.yc1{bottom:339.289950px;}
.y101{bottom:339.946950px;}
.y4d{bottom:341.617500px;}
.y49{bottom:349.353150px;}
.y48{bottom:352.728600px;}
.yc7{bottom:352.784400px;}
.yc8{bottom:355.912200px;}
.yc9{bottom:372.135600px;}
.y5b{bottom:379.051200px;}
.y4f{bottom:383.942100px;}
.y5a{bottom:386.252250px;}
.y4a{bottom:392.108700px;}
.yc5{bottom:395.557500px;}
.y45{bottom:397.818000px;}
.y11a{bottom:401.719500px;}
.y4b{bottom:415.807200px;}
.y4c{bottom:433.739100px;}
.y52{bottom:437.487300px;}
.y51{bottom:447.116250px;}
.y50{bottom:454.317150px;}
.ycd{bottom:484.189690px;}
.y60{bottom:486.344890px;}
.y17{bottom:498.697500px;}
.yce{bottom:498.838500px;}
.y61{bottom:524.905500px;}
.ye9{bottom:527.025300px;}
.yaf{bottom:527.215500px;}
.ye8{bottom:532.721400px;}
.yf7{bottom:537.456000px;}
.ye6{bottom:543.454200px;}
.ye7{bottom:545.941800px;}
.yb8{bottom:549.238200px;}
.ybc{bottom:549.289500px;}
.yb9{bottom:549.289650px;}
.ybe{bottom:550.344450px;}
.yba{bottom:552.735300px;}
.ybb{bottom:553.438650px;}
.ye5{bottom:556.604400px;}
.ybd{bottom:556.884300px;}
.y2c{bottom:566.273400px;}
.y2d{bottom:584.679900px;}
.ye4{bottom:586.768650px;}
.ydf{bottom:587.728800px;}
.ye1{bottom:595.040850px;}
.ye3{bottom:595.644900px;}
.y2e{bottom:597.843300px;}
.yd6{bottom:599.008350px;}
.ydd{bottom:600.400950px;}
.ye0{bottom:602.241900px;}
.yde{bottom:602.694300px;}
.yd7{bottom:603.414600px;}
.ydc{bottom:611.601750px;}
.yd8{bottom:624.307950px;}
.ydb{bottom:625.433100px;}
.yda{bottom:637.449000px;}
.ye2{bottom:638.177550px;}
.y4e{bottom:642.060150px;}
.yd9{bottom:642.682800px;}
.y2f{bottom:653.208600px;}
.y7{bottom:742.576500px;}
.y1{bottom:744.024000px;}
.yf5{bottom:865.879200px;}
.y100{bottom:874.728000px;}
.ya{bottom:878.774400px;}
.yf6{bottom:884.022300px;}
.yd5{bottom:884.620050px;}
.y29{bottom:887.282100px;}
.y28{bottom:894.483150px;}
.yb{bottom:896.781900px;}
.yd{bottom:898.733550px;}
.ye{bottom:902.951700px;}
.yf{bottom:909.141900px;}
.yc{bottom:919.700550px;}
.y41{bottom:949.975200px;}
.y2b{bottom:1068.090750px;}
.y27{bottom:1073.121750px;}
.y2a{bottom:1079.895900px;}
.y26{bottom:1083.021600px;}
.y9{bottom:1229.689950px;}
.h2{height:37.551881px;}
.h25{height:37.552419px;}
.h11{height:37.552722px;}
.h20{height:37.552723px;}
.h22{height:37.552752px;}
.h23{height:37.552753px;}
.h28{height:37.552869px;}
.h12{height:37.552870px;}
.h10{height:37.552898px;}
.h26{height:37.552900px;}
.h1a{height:37.556278px;}
.h1b{height:37.556789px;}
.h2b{height:37.560289px;}
.h2d{height:37.561784px;}
.h2e{height:37.561813px;}
.h39{height:37.561986px;}
.h15{height:37.564996px;}
.hc{height:37.577979px;}
.he{height:37.578037px;}
.hf{height:37.578147px;}
.hd{height:37.578205px;}
.h21{height:37.580818px;}
.h1c{height:37.582623px;}
.h16{height:37.583522px;}
.h18{height:37.584466px;}
.h17{height:37.584813px;}
.h19{height:37.589058px;}
.h14{height:38.464841px;}
.h3a{height:39.802481px;}
.h7{height:40.859081px;}
.h29{height:45.392602px;}
.h3d{height:47.020481px;}
.ha{height:48.838481px;}
.h27{height:49.801443px;}
.h4{height:50.068758px;}
.h31{height:51.712481px;}
.h36{height:53.866481px;}
.h1f{height:54.735281px;}
.h1e{height:54.906881px;}
.h2c{height:60.257681px;}
.h2f{height:63.711281px;}
.h9{height:73.053281px;}
.hb{height:74.400881px;}
.h33{height:79.820081px;}
.h1d{height:83.708081px;}
.h32{height:85.116281px;}
.h3b{height:126.738000px;}
.h3c{height:126.897000px;}
.h2a{height:184.722000px;}
.h38{height:193.500000px;}
.h13{height:197.865000px;}
.h24{height:198.076500px;}
.h8{height:207.199500px;}
.h5{height:213.984000px;}
.h30{height:231.685500px;}
.h6{height:234.076500px;}
.h3{height:250.740000px;}
.h35{height:328.266000px;}
.h37{height:374.274000px;}
.h34{height:401.625000px;}
.h1{height:499.681500px;}
.h0{height:1263.000000px;}
.wb{width:116.484000px;}
.w3{width:256.189500px;}
.w14{width:264.381000px;}
.w4{width:269.302500px;}
.w9{width:338.425500px;}
.wa{width:338.788500px;}
.w11{width:392.683500px;}
.w5{width:422.536500px;}
.w12{width:460.171500px;}
.w10{width:462.117000px;}
.w13{width:489.538500px;}
.w8{width:521.649000px;}
.wf{width:557.566500px;}
.w7{width:727.963500px;}
.w6{width:764.847000px;}
.w1{width:779.806500px;}
.wc{width:831.316500px;}
.we{width:831.597000px;}
.wd{width:832.236000px;}
.w2{width:873.457500px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x67{left:5.630700px;}
.x70{left:7.597800px;}
.xb3{left:11.145000px;}
.xc2{left:14.303250px;}
.x6f{left:16.426200px;}
.x5{left:20.542500px;}
.x5c{left:23.220600px;}
.x99{left:25.138350px;}
.x98{left:26.390100px;}
.x2e{left:33.460800px;}
.x12{left:35.117850px;}
.x2d{left:36.888300px;}
.xc1{left:38.238600px;}
.x54{left:40.648650px;}
.x14{left:42.734700px;}
.x6a{left:45.207000px;}
.x9c{left:46.599000px;}
.x83{left:48.865650px;}
.x68{left:51.781500px;}
.x69{left:54.441450px;}
.x5e{left:56.518950px;}
.x9a{left:57.831750px;}
.x30{left:59.415750px;}
.x4d{left:60.991500px;}
.x1{left:62.782500px;}
.x6b{left:64.186200px;}
.xe{left:67.288500px;}
.x82{left:73.382250px;}
.x84{left:74.522100px;}
.x5d{left:77.708850px;}
.x47{left:79.476000px;}
.x2f{left:81.685650px;}
.x6{left:82.799550px;}
.x9b{left:85.287000px;}
.x33{left:86.806050px;}
.x6c{left:87.966150px;}
.x8f{left:89.742750px;}
.x71{left:90.869550px;}
.xab{left:93.239400px;}
.x6d{left:95.173650px;}
.x85{left:96.833100px;}
.xf{left:98.026050px;}
.x31{left:102.076950px;}
.x6e{left:103.364550px;}
.x29{left:105.174000px;}
.x32{left:112.495800px;}
.xac{left:113.829000px;}
.x60{left:115.142700px;}
.x4b{left:116.418600px;}
.x4c{left:117.679200px;}
.x2a{left:128.935500px;}
.x38{left:132.366450px;}
.x13{left:139.969800px;}
.x11{left:143.334900px;}
.x75{left:149.189250px;}
.x10{left:150.854100px;}
.x1b{left:159.001500px;}
.x19{left:164.935050px;}
.x36{left:166.561500px;}
.x17{left:173.745900px;}
.x72{left:175.380900px;}
.x74{left:179.866800px;}
.x94{left:180.883800px;}
.x37{left:183.457050px;}
.x73{left:184.670850px;}
.x9{left:188.057850px;}
.x8{left:190.294050px;}
.x8c{left:191.633100px;}
.x1a{left:192.979950px;}
.x86{left:198.536100px;}
.xa{left:200.483700px;}
.xd{left:201.820050px;}
.x87{left:203.798400px;}
.x18{left:205.249350px;}
.x61{left:206.603400px;}
.x8d{left:208.950900px;}
.x16{left:211.048200px;}
.x7a{left:217.064850px;}
.x8b{left:223.030500px;}
.x5b{left:224.699850px;}
.x79{left:227.973150px;}
.x62{left:231.147300px;}
.x51{left:234.388050px;}
.x50{left:236.195550px;}
.x1e{left:237.745500px;}
.x5f{left:242.721750px;}
.xbc{left:244.224900px;}
.x1f{left:245.711100px;}
.x1d{left:248.013300px;}
.xb{left:251.637900px;}
.x2b{left:254.094300px;}
.x20{left:256.974750px;}
.x77{left:266.574900px;}
.x5a{left:267.868050px;}
.xb5{left:269.145900px;}
.x76{left:270.880950px;}
.x7c{left:274.489200px;}
.x80{left:276.284100px;}
.x7b{left:277.656450px;}
.x7e{left:282.618600px;}
.x1c{left:286.086900px;}
.x2c{left:288.325050px;}
.x21{left:290.008350px;}
.xc{left:292.549350px;}
.x56{left:296.143950px;}
.x22{left:302.547150px;}
.x78{left:304.296450px;}
.x7f{left:311.486400px;}
.x55{left:314.406750px;}
.x95{left:315.852900px;}
.x7d{left:317.634600px;}
.xb2{left:319.498500px;}
.x35{left:322.697400px;}
.x9f{left:326.605350px;}
.xa0{left:331.141950px;}
.x34{left:333.432000px;}
.xba{left:334.756650px;}
.x9e{left:343.239150px;}
.xbb{left:345.702450px;}
.x2{left:348.588300px;}
.xbf{left:350.524800px;}
.xb6{left:356.157450px;}
.xb8{left:357.284100px;}
.xa1{left:359.654550px;}
.x45{left:364.139850px;}
.xc0{left:367.983450px;}
.x9d{left:371.788800px;}
.x57{left:377.943300px;}
.xbe{left:381.499800px;}
.x58{left:386.162250px;}
.xb9{left:388.399950px;}
.x59{left:392.920500px;}
.xc3{left:408.393000px;}
.xbd{left:413.601150px;}
.x4a{left:415.488150px;}
.x63{left:417.291150px;}
.xc4{left:418.530750px;}
.x28{left:423.822300px;}
.x3a{left:428.214150px;}
.xc5{left:430.498200px;}
.x64{left:434.890650px;}
.x23{left:442.813500px;}
.x65{left:446.928750px;}
.x39{left:449.540400px;}
.x3b{left:453.050850px;}
.x4{left:454.421250px;}
.x66{left:460.656450px;}
.xb4{left:462.600900px;}
.x93{left:469.209900px;}
.x81{left:471.931500px;}
.x49{left:473.050200px;}
.x48{left:474.301950px;}
.xb7{left:489.351000px;}
.x8a{left:507.157200px;}
.x89{left:521.236800px;}
.x24{left:529.470300px;}
.xa2{left:532.043250px;}
.x88{left:533.815200px;}
.x3c{left:536.843400px;}
.x8e{left:551.296800px;}
.x4e{left:553.844100px;}
.x4f{left:554.851650px;}
.x27{left:570.100800px;}
.x15{left:573.286500px;}
.x46{left:582.157650px;}
.x53{left:590.984758px;}
.xa4{left:605.133150px;}
.xa3{left:608.637600px;}
.x92{left:658.370100px;}
.x40{left:674.902650px;}
.x90{left:681.976650px;}
.x26{left:687.835050px;}
.x91{left:689.554200px;}
.x97{left:692.530815px;}
.x25{left:693.598800px;}
.x52{left:697.457700px;}
.x3e{left:705.447000px;}
.x3{left:707.857350px;}
.x7{left:709.875600px;}
.xaa{left:719.319750px;}
.xb0{left:721.223700px;}
.x3f{left:734.512350px;}
.xa9{left:735.933600px;}
.x3d{left:748.849500px;}
.xa7{left:751.702650px;}
.xaf{left:753.531150px;}
.xae{left:758.433150px;}
.xb1{left:760.505700px;}
.x42{left:772.527300px;}
.xa8{left:778.947000px;}
.xad{left:782.650350px;}
.x41{left:785.198850px;}
.x44{left:787.405050px;}
.x43{left:793.083450px;}
.xa6{left:794.503350px;}
.x96{left:798.667350px;}
.xa5{left:836.321250px;}
@media print{
.v11{vertical-align:-40.449067pt;}
.v1{vertical-align:-38.575488pt;}
.v5{vertical-align:-31.515200pt;}
.v15{vertical-align:-27.607467pt;}
.v19{vertical-align:-25.003733pt;}
.v2{vertical-align:-23.393600pt;}
.vd{vertical-align:-14.807804pt;}
.v3{vertical-align:-10.432533pt;}
.v1a{vertical-align:-9.001067pt;}
.v12{vertical-align:-5.000533pt;}
.vc{vertical-align:-3.116761pt;}
.v6{vertical-align:-1.171733pt;}
.v0{vertical-align:0.000000pt;}
.v18{vertical-align:2.000533pt;}
.v4{vertical-align:2.939733pt;}
.ve{vertical-align:6.968166pt;}
.v1b{vertical-align:8.416533pt;}
.v8{vertical-align:10.032533pt;}
.v13{vertical-align:12.587200pt;}
.v17{vertical-align:14.501867pt;}
.vb{vertical-align:15.426667pt;}
.vf{vertical-align:20.182933pt;}
.v10{vertical-align:23.252800pt;}
.v7{vertical-align:31.556800pt;}
.v9{vertical-align:32.754667pt;}
.v16{vertical-align:37.571733pt;}
.va{vertical-align:41.027733pt;}
.v14{vertical-align:42.279467pt;}
.ls0{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.000006pt;}
.ls9{letter-spacing:0.000024pt;}
.ls2{letter-spacing:0.000040pt;}
.ls1d{letter-spacing:0.000063pt;}
.ls11{letter-spacing:0.000069pt;}
.lsc{letter-spacing:0.000083pt;}
.ls12{letter-spacing:0.000084pt;}
.ls19{letter-spacing:0.000103pt;}
.ls3{letter-spacing:0.000105pt;}
.ls16{letter-spacing:0.000114pt;}
.ls5{letter-spacing:0.000117pt;}
.ls4{letter-spacing:0.000138pt;}
.ls6{letter-spacing:0.000139pt;}
.ls1b{letter-spacing:0.000151pt;}
.ls8{letter-spacing:0.000163pt;}
.ls1a{letter-spacing:0.000171pt;}
.ls13{letter-spacing:0.000183pt;}
.ls15{letter-spacing:0.000204pt;}
.lsa{letter-spacing:0.000213pt;}
.ls1c{letter-spacing:0.000214pt;}
.lsf{letter-spacing:0.000238pt;}
.ls7{letter-spacing:0.000243pt;}
.lsb{letter-spacing:0.000300pt;}
.lse{letter-spacing:0.000356pt;}
.ls1{letter-spacing:0.000360pt;}
.lsd{letter-spacing:0.000403pt;}
.ls10{letter-spacing:0.000590pt;}
.ls17{letter-spacing:58.229288pt;}
.ls18{letter-spacing:100.262500pt;}
.wsa{word-spacing:-9.107988pt;}
.wsf{word-spacing:-8.900530pt;}
.wse{word-spacing:-8.899515pt;}
.wsd{word-spacing:-8.899443pt;}
.wsc{word-spacing:-8.899105pt;}
.ws11{word-spacing:-8.899090pt;}
.ws15{word-spacing:-8.898591pt;}
.ws8{word-spacing:-8.897990pt;}
.wsb{word-spacing:-8.894806pt;}
.ws1c{word-spacing:-8.894289pt;}
.ws27{word-spacing:-8.894190pt;}
.ws1b{word-spacing:-8.894138pt;}
.ws19{word-spacing:-8.893735pt;}
.ws10{word-spacing:-8.892849pt;}
.ws9{word-spacing:-8.891837pt;}
.ws0{word-spacing:-8.891810pt;}
.ws3{word-spacing:0.000000pt;}
.ws5{word-spacing:2.644099pt;}
.ws13{word-spacing:9.004144pt;}
.ws25{word-spacing:11.801647pt;}
.ws22{word-spacing:14.064263pt;}
.ws4{word-spacing:22.257521pt;}
.ws6{word-spacing:22.965554pt;}
.ws14{word-spacing:23.362990pt;}
.ws1d{word-spacing:24.284126pt;}
.ws1a{word-spacing:29.094915pt;}
.ws1{word-spacing:32.069293pt;}
.ws17{word-spacing:33.279290pt;}
.ws16{word-spacing:42.180237pt;}
.ws28{word-spacing:57.117361pt;}
.ws29{word-spacing:76.119712pt;}
.ws23{word-spacing:81.731233pt;}
.ws2a{word-spacing:84.621436pt;}
.ws1f{word-spacing:86.918681pt;}
.ws21{word-spacing:98.669153pt;}
.ws1e{word-spacing:103.665874pt;}
.ws26{word-spacing:104.623237pt;}
.ws18{word-spacing:129.743079pt;}
.ws12{word-spacing:148.374779pt;}
.ws20{word-spacing:265.792660pt;}
.ws2b{word-spacing:301.437250pt;}
.ws2{word-spacing:304.192133pt;}
.ws24{word-spacing:531.341820pt;}
.ws7{word-spacing:622.442607pt;}
._1{margin-left:-5.703835pt;}
._3{margin-left:-1.765840pt;}
._2{width:68.284317pt;}
._4{width:179.762616pt;}
._0{width:2365.453145pt;}
.fs0{font-size:32.004267pt;}
.fs3{font-size:32.004363pt;}
.fsa{font-size:32.008004pt;}
.fsd{font-size:32.011194pt;}
.fse{font-size:32.012646pt;}
.fsf{font-size:32.012831pt;}
.fs5{font-size:32.015050pt;}
.fs2{font-size:32.026509pt;}
.fsc{font-size:32.028674pt;}
.fsb{font-size:32.030466pt;}
.fs6{font-size:32.030521pt;}
.fs7{font-size:32.031737pt;}
.fs8{font-size:32.031997pt;}
.fs9{font-size:32.035649pt;}
.fs4{font-size:32.782353pt;}
.fs1{font-size:42.672000pt;}
.y0{bottom:0.000000pt;}
.ycc{bottom:4.449600pt;}
.y5f{bottom:6.365333pt;}
.y1d{bottom:8.127733pt;}
.y1e{bottom:10.146400pt;}
.y7e{bottom:15.446400pt;}
.y84{bottom:16.010267pt;}
.y7d{bottom:16.216533pt;}
.y8{bottom:16.687333pt;}
.y1b{bottom:17.200933pt;}
.y3b{bottom:17.609600pt;}
.y10{bottom:21.010667pt;}
.y83{bottom:22.238667pt;}
.y16{bottom:22.579867pt;}
.y1c{bottom:23.684133pt;}
.y11d{bottom:24.535600pt;}
.y81{bottom:25.220400pt;}
.y70{bottom:25.675333pt;}
.y107{bottom:26.702267pt;}
.y94{bottom:26.830267pt;}
.y7f{bottom:27.204267pt;}
.y80{bottom:27.470933pt;}
.yf1{bottom:28.170933pt;}
.y82{bottom:29.064800pt;}
.y85{bottom:29.151200pt;}
.y110{bottom:32.174667pt;}
.y1a{bottom:33.221333pt;}
.y124{bottom:34.248667pt;}
.y18{bottom:34.261067pt;}
.y14{bottom:36.446933pt;}
.y117{bottom:37.050267pt;}
.y11c{bottom:37.287200pt;}
.y93{bottom:37.494533pt;}
.y96{bottom:38.522400pt;}
.y3a{bottom:39.059600pt;}
.yf0{bottom:40.047467pt;}
.y86{bottom:40.652667pt;}
.y112{bottom:41.300800pt;}
.y11b{bottom:42.038000pt;}
.ya3{bottom:42.501467pt;}
.yff{bottom:43.024133pt;}
.y56{bottom:44.547867pt;}
.y95{bottom:45.274533pt;}
.y74{bottom:45.453467pt;}
.y75{bottom:46.764133pt;}
.y11e{bottom:47.663600pt;}
.yef{bottom:47.923333pt;}
.y106{bottom:48.599333pt;}
.y125{bottom:48.690800pt;}
.y19{bottom:48.764267pt;}
.y121{bottom:49.226400pt;}
.y122{bottom:49.351333pt;}
.yaa{bottom:49.739867pt;}
.y99{bottom:49.775333pt;}
.y7c{bottom:50.034667pt;}
.y55{bottom:50.948667pt;}
.y111{bottom:54.177600pt;}
.y10a{bottom:54.281333pt;}
.y118{bottom:55.052667pt;}
.y7a{bottom:55.491733pt;}
.y9b{bottom:55.597067pt;}
.y77{bottom:56.054267pt;}
.yd1{bottom:56.348133pt;}
.y79{bottom:56.366800pt;}
.y71{bottom:56.429333pt;}
.y11f{bottom:56.664933pt;}
.y78{bottom:56.741867pt;}
.y128{bottom:57.447867pt;}
.ya4{bottom:57.690533pt;}
.y98{bottom:57.859600pt;}
.y10b{bottom:59.528133pt;}
.y54{bottom:60.013867pt;}
.ya2{bottom:60.216000pt;}
.ya9{bottom:60.317067pt;}
.y126{bottom:60.473600pt;}
.yfe{bottom:65.027067pt;}
.y97{bottom:65.600667pt;}
.y76{bottom:66.258800pt;}
.y53{bottom:66.414667pt;}
.y72{bottom:66.680667pt;}
.y9a{bottom:67.944000pt;}
.yd2{bottom:69.224800pt;}
.yab{bottom:69.568267pt;}
.y10c{bottom:69.679467pt;}
.y73{bottom:70.556133pt;}
.y120{bottom:71.166800pt;}
.yea{bottom:72.412000pt;}
.y10f{bottom:73.930000pt;}
.yb5{bottom:74.248267pt;}
.y119{bottom:76.055333pt;}
.ya5{bottom:77.256400pt;}
.y9d{bottom:78.917733pt;}
.y127{bottom:81.347067pt;}
.y3c{bottom:82.391067pt;}
.yb4{bottom:82.994667pt;}
.yb0{bottom:85.056400pt;}
.y9c{bottom:86.874400pt;}
.ya8{bottom:87.015067pt;}
.y15{bottom:90.417067pt;}
.y9e{bottom:90.510267pt;}
.yb3{bottom:91.846800pt;}
.y10d{bottom:91.932400pt;}
.yd4{bottom:92.915467pt;}
.yb1{bottom:95.565600pt;}
.y69{bottom:96.188133pt;}
.y3d{bottom:97.393067pt;}
.yb2{bottom:98.709867pt;}
.y13{bottom:99.430933pt;}
.yb6{bottom:99.917200pt;}
.y40{bottom:100.355200pt;}
.y6b{bottom:100.686267pt;}
.y9f{bottom:102.031733pt;}
.yb7{bottom:102.228000pt;}
.y6e{bottom:103.186533pt;}
.ya0{bottom:105.557333pt;}
.y88{bottom:105.743467pt;}
.yac{bottom:106.573067pt;}
.y39{bottom:108.101467pt;}
.y6a{bottom:108.187200pt;}
.y12{bottom:108.893467pt;}
.y89{bottom:109.728000pt;}
.ya7{bottom:110.371733pt;}
.y3e{bottom:111.394800pt;}
.y38{bottom:111.753600pt;}
.y66{bottom:112.437733pt;}
.y20{bottom:114.477067pt;}
.y10e{bottom:115.560533pt;}
.y3f{bottom:116.362533pt;}
.y116{bottom:116.810800pt;}
.y1f{bottom:117.901600pt;}
.ya6{bottom:118.643200pt;}
.y67{bottom:120.188933pt;}
.y8a{bottom:122.633067pt;}
.y6f{bottom:122.751600pt;}
.y11{bottom:124.400267pt;}
.y6c{bottom:125.092267pt;}
.yad{bottom:126.200667pt;}
.y68{bottom:127.564800pt;}
.y65{bottom:127.634133pt;}
.yfd{bottom:129.535467pt;}
.yd0{bottom:130.207867pt;}
.yae{bottom:130.576267pt;}
.y63{bottom:130.678667pt;}
.y33{bottom:133.950533pt;}
.y87{bottom:134.998667pt;}
.y113{bottom:135.813200pt;}
.y109{bottom:136.063467pt;}
.ycf{bottom:136.608667pt;}
.y8b{bottom:136.673067pt;}
.y115{bottom:139.563733pt;}
.y92{bottom:142.772667pt;}
.y91{bottom:142.984000pt;}
.y21{bottom:143.595600pt;}
.y64{bottom:143.950800pt;}
.y24{bottom:145.162000pt;}
.y6d{bottom:146.254800pt;}
.y32{bottom:146.336933pt;}
.y36{bottom:146.774400pt;}
.y114{bottom:146.814667pt;}
.ybf{bottom:147.133733pt;}
.y8e{bottom:148.957067pt;}
.y22{bottom:150.888000pt;}
.y90{bottom:154.233333pt;}
.y8d{bottom:155.311600pt;}
.y25{bottom:155.877467pt;}
.yfa{bottom:156.789067pt;}
.y23{bottom:157.645200pt;}
.y108{bottom:158.441467pt;}
.ycb{bottom:158.519467pt;}
.y8c{bottom:162.179067pt;}
.y37{bottom:162.464000pt;}
.y31{bottom:163.714133pt;}
.yca{bottom:164.920267pt;}
.y8f{bottom:165.285067pt;}
.yc0{bottom:168.940667pt;}
.y62{bottom:170.445333pt;}
.yc4{bottom:174.767333pt;}
.y34{bottom:175.278133pt;}
.y35{bottom:175.278267pt;}
.yd3{bottom:181.052000pt;}
.y57{bottom:184.325733pt;}
.yf4{bottom:184.441333pt;}
.yfb{bottom:184.667733pt;}
.y105{bottom:196.239200pt;}
.yf3{bottom:196.942933pt;}
.y5e{bottom:199.077600pt;}
.yf2{bottom:211.819867pt;}
.y3{bottom:214.014800pt;}
.y104{bottom:214.588133pt;}
.y2{bottom:220.415733pt;}
.y30{bottom:223.218667pt;}
.y59{bottom:227.190800pt;}
.yee{bottom:233.197733pt;}
.y58{bottom:233.591600pt;}
.y123{bottom:236.285333pt;}
.yf8{bottom:238.881467pt;}
.yf9{bottom:242.425333pt;}
.y42{bottom:245.601867pt;}
.yc2{bottom:245.615067pt;}
.yed{bottom:248.529200pt;}
.y44{bottom:254.840400pt;}
.yfc{bottom:256.802133pt;}
.yec{bottom:257.450800pt;}
.yc3{bottom:259.856133pt;}
.y6{bottom:264.445333pt;}
.y5{bottom:270.846267pt;}
.y43{bottom:273.080267pt;}
.yeb{bottom:274.565067pt;}
.y5d{bottom:275.693733pt;}
.y7b{bottom:277.458667pt;}
.ya1{bottom:279.484000pt;}
.y103{bottom:282.047467pt;}
.y5c{bottom:282.094667pt;}
.y46{bottom:282.911467pt;}
.y102{bottom:287.673067pt;}
.y4{bottom:289.989867pt;}
.yc6{bottom:295.400933pt;}
.y47{bottom:297.686000pt;}
.yc1{bottom:301.591067pt;}
.y101{bottom:302.175067pt;}
.y4d{bottom:303.660000pt;}
.y49{bottom:310.536133pt;}
.y48{bottom:313.536533pt;}
.yc7{bottom:313.586133pt;}
.yc8{bottom:316.366400pt;}
.yc9{bottom:330.787200pt;}
.y5b{bottom:336.934400pt;}
.y4f{bottom:341.281867pt;}
.y5a{bottom:343.335333pt;}
.y4a{bottom:348.541067pt;}
.yc5{bottom:351.606667pt;}
.y45{bottom:353.616000pt;}
.y11a{bottom:357.084000pt;}
.y4b{bottom:369.606400pt;}
.y4c{bottom:385.545867pt;}
.y52{bottom:388.877600pt;}
.y51{bottom:397.436667pt;}
.y50{bottom:403.837467pt;}
.ycd{bottom:430.390836pt;}
.y60{bottom:432.306569pt;}
.y17{bottom:443.286667pt;}
.yce{bottom:443.412000pt;}
.y61{bottom:466.582667pt;}
.ye9{bottom:468.466933pt;}
.yaf{bottom:468.636000pt;}
.ye8{bottom:473.530133pt;}
.yf7{bottom:477.738667pt;}
.ye6{bottom:483.070400pt;}
.ye7{bottom:485.281600pt;}
.yb8{bottom:488.211733pt;}
.ybc{bottom:488.257333pt;}
.yb9{bottom:488.257467pt;}
.ybe{bottom:489.195067pt;}
.yba{bottom:491.320267pt;}
.ybb{bottom:491.945467pt;}
.ye5{bottom:494.759467pt;}
.ybd{bottom:495.008267pt;}
.y2c{bottom:503.354133pt;}
.y2d{bottom:519.715467pt;}
.ye4{bottom:521.572133pt;}
.ydf{bottom:522.425600pt;}
.ye1{bottom:528.925200pt;}
.ye3{bottom:529.462133pt;}
.y2e{bottom:531.416267pt;}
.yd6{bottom:532.451867pt;}
.ydd{bottom:533.689733pt;}
.ye0{bottom:535.326133pt;}
.yde{bottom:535.728267pt;}
.yd7{bottom:536.368533pt;}
.ydc{bottom:543.646000pt;}
.yd8{bottom:554.940400pt;}
.ydb{bottom:555.940533pt;}
.yda{bottom:566.621333pt;}
.ye2{bottom:567.268933pt;}
.y4e{bottom:570.720133pt;}
.yd9{bottom:571.273600pt;}
.y2f{bottom:580.629867pt;}
.y7{bottom:660.068000pt;}
.y1{bottom:661.354667pt;}
.yf5{bottom:769.670400pt;}
.y100{bottom:777.536000pt;}
.ya{bottom:781.132800pt;}
.yf6{bottom:785.797600pt;}
.yd5{bottom:786.328933pt;}
.y29{bottom:788.695200pt;}
.y28{bottom:795.096133pt;}
.yb{bottom:797.139467pt;}
.yd{bottom:798.874267pt;}
.ye{bottom:802.623733pt;}
.yf{bottom:808.126133pt;}
.yc{bottom:817.511600pt;}
.y41{bottom:844.422400pt;}
.y2b{bottom:949.414000pt;}
.y27{bottom:953.886000pt;}
.y2a{bottom:959.907467pt;}
.y26{bottom:962.685867pt;}
.y9{bottom:1093.057733pt;}
.h2{height:33.379450pt;}
.h25{height:33.379928pt;}
.h11{height:33.380197pt;}
.h20{height:33.380198pt;}
.h22{height:33.380224pt;}
.h23{height:33.380225pt;}
.h28{height:33.380328pt;}
.h12{height:33.380329pt;}
.h10{height:33.380354pt;}
.h26{height:33.380356pt;}
.h1a{height:33.383358pt;}
.h1b{height:33.383813pt;}
.h2b{height:33.386923pt;}
.h2d{height:33.388252pt;}
.h2e{height:33.388279pt;}
.h39{height:33.388432pt;}
.h15{height:33.391108pt;}
.hc{height:33.402648pt;}
.he{height:33.402700pt;}
.hf{height:33.402797pt;}
.hd{height:33.402849pt;}
.h21{height:33.405171pt;}
.h1c{height:33.406776pt;}
.h16{height:33.407575pt;}
.h18{height:33.408414pt;}
.h17{height:33.408723pt;}
.h19{height:33.412496pt;}
.h14{height:34.190970pt;}
.h3a{height:35.379983pt;}
.h7{height:36.319183pt;}
.h29{height:40.348980pt;}
.h3d{height:41.795983pt;}
.ha{height:43.411983pt;}
.h27{height:44.267949pt;}
.h4{height:44.505563pt;}
.h31{height:45.966650pt;}
.h36{height:47.881317pt;}
.h1f{height:48.653583pt;}
.h1e{height:48.806117pt;}
.h2c{height:53.562383pt;}
.h2f{height:56.632250pt;}
.h9{height:64.936250pt;}
.hb{height:66.134117pt;}
.h33{height:70.951183pt;}
.h1d{height:74.407183pt;}
.h32{height:75.658917pt;}
.h3b{height:112.656000pt;}
.h3c{height:112.797333pt;}
.h2a{height:164.197333pt;}
.h38{height:172.000000pt;}
.h13{height:175.880000pt;}
.h24{height:176.068000pt;}
.h8{height:184.177333pt;}
.h5{height:190.208000pt;}
.h30{height:205.942667pt;}
.h6{height:208.068000pt;}
.h3{height:222.880000pt;}
.h35{height:291.792000pt;}
.h37{height:332.688000pt;}
.h34{height:357.000000pt;}
.h1{height:444.161333pt;}
.h0{height:1122.666667pt;}
.wb{width:103.541333pt;}
.w3{width:227.724000pt;}
.w14{width:235.005333pt;}
.w4{width:239.380000pt;}
.w9{width:300.822667pt;}
.wa{width:301.145333pt;}
.w11{width:349.052000pt;}
.w5{width:375.588000pt;}
.w12{width:409.041333pt;}
.w10{width:410.770667pt;}
.w13{width:435.145333pt;}
.w8{width:463.688000pt;}
.wf{width:495.614667pt;}
.w7{width:647.078667pt;}
.w6{width:679.864000pt;}
.w1{width:693.161333pt;}
.wc{width:738.948000pt;}
.we{width:739.197333pt;}
.wd{width:739.765333pt;}
.w2{width:776.406667pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x67{left:5.005067pt;}
.x70{left:6.753600pt;}
.xb3{left:9.906667pt;}
.xc2{left:12.714000pt;}
.x6f{left:14.601067pt;}
.x5{left:18.260000pt;}
.x5c{left:20.640533pt;}
.x99{left:22.345200pt;}
.x98{left:23.457867pt;}
.x2e{left:29.742933pt;}
.x12{left:31.215867pt;}
.x2d{left:32.789600pt;}
.xc1{left:33.989867pt;}
.x54{left:36.132133pt;}
.x14{left:37.986400pt;}
.x6a{left:40.184000pt;}
.x9c{left:41.421333pt;}
.x83{left:43.436133pt;}
.x68{left:46.028000pt;}
.x69{left:48.392400pt;}
.x5e{left:50.239067pt;}
.x9a{left:51.406000pt;}
.x30{left:52.814000pt;}
.x4d{left:54.214667pt;}
.x1{left:55.806667pt;}
.x6b{left:57.054400pt;}
.xe{left:59.812000pt;}
.x82{left:65.228667pt;}
.x84{left:66.241867pt;}
.x5d{left:69.074533pt;}
.x47{left:70.645333pt;}
.x2f{left:72.609467pt;}
.x6{left:73.599600pt;}
.x9b{left:75.810667pt;}
.x33{left:77.160933pt;}
.x6c{left:78.192133pt;}
.x8f{left:79.771333pt;}
.x71{left:80.772933pt;}
.xab{left:82.879467pt;}
.x6d{left:84.598800pt;}
.x85{left:86.073867pt;}
.xf{left:87.134267pt;}
.x31{left:90.735067pt;}
.x6e{left:91.879600pt;}
.x29{left:93.488000pt;}
.x32{left:99.996267pt;}
.xac{left:101.181333pt;}
.x60{left:102.349067pt;}
.x4b{left:103.483200pt;}
.x4c{left:104.603733pt;}
.x2a{left:114.609333pt;}
.x38{left:117.659067pt;}
.x13{left:124.417600pt;}
.x11{left:127.408800pt;}
.x75{left:132.612667pt;}
.x10{left:134.092533pt;}
.x1b{left:141.334667pt;}
.x19{left:146.608933pt;}
.x36{left:148.054667pt;}
.x17{left:154.440800pt;}
.x72{left:155.894133pt;}
.x74{left:159.881600pt;}
.x94{left:160.785600pt;}
.x37{left:163.072933pt;}
.x73{left:164.151867pt;}
.x9{left:167.162533pt;}
.x8{left:169.150267pt;}
.x8c{left:170.340533pt;}
.x1a{left:171.537733pt;}
.x86{left:176.476533pt;}
.xa{left:178.207733pt;}
.xd{left:179.395600pt;}
.x87{left:181.154133pt;}
.x18{left:182.443867pt;}
.x61{left:183.647467pt;}
.x8d{left:185.734133pt;}
.x16{left:187.598400pt;}
.x7a{left:192.946533pt;}
.x8b{left:198.249333pt;}
.x5b{left:199.733200pt;}
.x79{left:202.642800pt;}
.x62{left:205.464267pt;}
.x51{left:208.344933pt;}
.x50{left:209.951600pt;}
.x1e{left:211.329333pt;}
.x5f{left:215.752667pt;}
.xbc{left:217.088800pt;}
.x1f{left:218.409867pt;}
.x1d{left:220.456267pt;}
.xb{left:223.678133pt;}
.x2b{left:225.861600pt;}
.x20{left:228.422000pt;}
.x77{left:236.955467pt;}
.x5a{left:238.104933pt;}
.xb5{left:239.240800pt;}
.x76{left:240.783067pt;}
.x7c{left:243.990400pt;}
.x80{left:245.585867pt;}
.x7b{left:246.805733pt;}
.x7e{left:251.216533pt;}
.x1c{left:254.299467pt;}
.x2c{left:256.288933pt;}
.x21{left:257.785200pt;}
.xc{left:260.043867pt;}
.x56{left:263.239067pt;}
.x22{left:268.930800pt;}
.x78{left:270.485733pt;}
.x7f{left:276.876800pt;}
.x55{left:279.472667pt;}
.x95{left:280.758133pt;}
.x7d{left:282.341867pt;}
.xb2{left:283.998667pt;}
.x35{left:286.842133pt;}
.x9f{left:290.315867pt;}
.xa0{left:294.348400pt;}
.x34{left:296.384000pt;}
.xba{left:297.561467pt;}
.x9e{left:305.101467pt;}
.xbb{left:307.291067pt;}
.x2{left:309.856267pt;}
.xbf{left:311.577600pt;}
.xb6{left:316.584400pt;}
.xb8{left:317.585867pt;}
.xa1{left:319.692933pt;}
.x45{left:323.679867pt;}
.xc0{left:327.096400pt;}
.x9d{left:330.478933pt;}
.x57{left:335.949600pt;}
.xbe{left:339.110933pt;}
.x58{left:343.255333pt;}
.xb9{left:345.244400pt;}
.x59{left:349.262667pt;}
.xc3{left:363.016000pt;}
.xbd{left:367.645467pt;}
.x4a{left:369.322800pt;}
.x63{left:370.925467pt;}
.xc4{left:372.027333pt;}
.x28{left:376.730933pt;}
.x3a{left:380.634800pt;}
.xc5{left:382.665067pt;}
.x64{left:386.569467pt;}
.x23{left:393.612000pt;}
.x65{left:397.270000pt;}
.x39{left:399.591467pt;}
.x3b{left:402.711867pt;}
.x4{left:403.930000pt;}
.x66{left:409.472400pt;}
.xb4{left:411.200800pt;}
.x93{left:417.075467pt;}
.x81{left:419.494667pt;}
.x49{left:420.489067pt;}
.x48{left:421.601733pt;}
.xb7{left:434.978667pt;}
.x8a{left:450.806400pt;}
.x89{left:463.321600pt;}
.x24{left:470.640267pt;}
.xa2{left:472.927333pt;}
.x88{left:474.502400pt;}
.x3c{left:477.194133pt;}
.x8e{left:490.041600pt;}
.x4e{left:492.305867pt;}
.x4f{left:493.201467pt;}
.x27{left:506.756267pt;}
.x15{left:509.588000pt;}
.x46{left:517.473467pt;}
.x53{left:525.319785pt;}
.xa4{left:537.896133pt;}
.xa3{left:541.011200pt;}
.x92{left:585.217867pt;}
.x40{left:599.913467pt;}
.x90{left:606.201467pt;}
.x26{left:611.408933pt;}
.x91{left:612.937067pt;}
.x97{left:615.582947pt;}
.x25{left:616.532267pt;}
.x52{left:619.962400pt;}
.x3e{left:627.064000pt;}
.x3{left:629.206533pt;}
.x7{left:631.000533pt;}
.xaa{left:639.395333pt;}
.xb0{left:641.087733pt;}
.x3f{left:652.899867pt;}
.xa9{left:654.163200pt;}
.x3d{left:665.644000pt;}
.xa7{left:668.180133pt;}
.xaf{left:669.805467pt;}
.xae{left:674.162800pt;}
.xb1{left:676.005067pt;}
.x42{left:686.690933pt;}
.xa8{left:692.397333pt;}
.xad{left:695.689200pt;}
.x41{left:697.954533pt;}
.x44{left:699.915600pt;}
.x43{left:704.963067pt;}
.xa6{left:706.225200pt;}
.x96{left:709.926533pt;}
.xa5{left:743.396667pt;}
}




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