
    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_646319f30bd19358cde16555.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.999000;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_06064354e98f00ee0245f180.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.908000;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_b24ef0072e06a33c4dee040b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.899000;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_dd89458667bd254cbf388b96.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.898000;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_0ea5345d5f896785096e85f1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_7cf1e444395152a65308e6dd.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.716000;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_7f243aa46c359351b16bbc63.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.923000;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_fcc51253b36ae4a38bfe0f97.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.390000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_3fa6276ffacef6dde11c7275.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.664000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_92cd6ef739389d696b9d2843.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.106000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:2.990525px;}
.ls4{letter-spacing:22.910525px;}
.ls3{letter-spacing:29.884178px;}
.ls0{letter-spacing:29.887800px;}
.ls2{letter-spacing:29.889030px;}
.ls8{letter-spacing:30.200525px;}
.ls6{letter-spacing:78.370200px;}
.ls7{letter-spacing:78.374338px;}
.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;}
}
.ws19{word-spacing:-16.605662px;}
.ws23{word-spacing:-3.335478px;}
.ws5d{word-spacing:-3.215927px;}
.ws26{word-spacing:-2.319293px;}
.ws66{word-spacing:-2.020415px;}
.ws4f{word-spacing:-1.781313px;}
.ws3a{word-spacing:-1.064006px;}
.ws2d{word-spacing:-0.824903px;}
.ws2e{word-spacing:-0.799564px;}
.ws18{word-spacing:-0.406474px;}
.ws29{word-spacing:-0.107596px;}
.ws2{word-spacing:-0.086077px;}
.ws28{word-spacing:-0.059776px;}
.ws17{word-spacing:0.000000px;}
.ws24{word-spacing:0.071731px;}
.ws3b{word-spacing:0.251058px;}
.ws61{word-spacing:0.430384px;}
.ws5a{word-spacing:0.609711px;}
.ws25{word-spacing:0.848814px;}
.ws48{word-spacing:0.968365px;}
.wsf{word-spacing:1.864999px;}
.ws6f{word-spacing:2.044326px;}
.ws15{word-spacing:2.522530px;}
.ws4d{word-spacing:2.582306px;}
.ws56{word-spacing:2.614800px;}
.ws58{word-spacing:2.642082px;}
.ws50{word-spacing:2.940960px;}
.ws10{word-spacing:3.120286px;}
.ws54{word-spacing:3.239838px;}
.wsc{word-spacing:3.299613px;}
.ws8{word-spacing:3.359389px;}
.ws22{word-spacing:3.419164px;}
.ws64{word-spacing:3.538716px;}
.ws3d{word-spacing:3.837594px;}
.ws1{word-spacing:3.873485px;}
.ws14{word-spacing:3.957145px;}
.ws1b{word-spacing:4.495125px;}
.ws5f{word-spacing:4.554901px;}
.ws4b{word-spacing:4.906170px;}
.ws4c{word-spacing:4.906251px;}
.ws67{word-spacing:4.913554px;}
.ws4a{word-spacing:4.914359px;}
.ws75{word-spacing:5.033106px;}
.ws73{word-spacing:5.074276px;}
.ws55{word-spacing:5.391759px;}
.ws6a{word-spacing:5.630862px;}
.ws6d{word-spacing:5.929740px;}
.ws37{word-spacing:6.228618px;}
.ws11{word-spacing:6.527496px;}
.ws5b{word-spacing:6.647047px;}
.ws76{word-spacing:6.826374px;}
.ws16{word-spacing:6.886149px;}
.ws2c{word-spacing:7.065476px;}
.ws59{word-spacing:7.185027px;}
.ws12{word-spacing:7.364354px;}
.ws27{word-spacing:7.603456px;}
.ws6b{word-spacing:7.663232px;}
.ws6c{word-spacing:8.021886px;}
.ws1c{word-spacing:8.201212px;}
.ws71{word-spacing:8.535265px;}
.ws72{word-spacing:8.559866px;}
.ws3f{word-spacing:8.978295px;}
.ws45{word-spacing:9.157622px;}
.ws65{word-spacing:9.336949px;}
.ws1d{word-spacing:9.396724px;}
.ws44{word-spacing:9.576051px;}
.ws13{word-spacing:9.635827px;}
.ws52{word-spacing:9.695602px;}
.ws20{word-spacing:9.934705px;}
.wse{word-spacing:10.412910px;}
.ws70{word-spacing:10.592236px;}
.ws1f{word-spacing:10.891114px;}
.ws69{word-spacing:10.950890px;}
.ws77{word-spacing:11.608422px;}
.ws9{word-spacing:12.744158px;}
.ws7{word-spacing:12.803934px;}
.ws5c{word-spacing:12.983260px;}
.ws30{word-spacing:13.234625px;}
.ws2a{word-spacing:14.118997px;}
.ws53{word-spacing:15.673162px;}
.ws36{word-spacing:16.569796px;}
.ws42{word-spacing:16.928450px;}
.ws39{word-spacing:18.781494px;}
.ws46{word-spacing:19.080372px;}
.ws57{word-spacing:19.158704px;}
.wsb{word-spacing:19.917230px;}
.ws63{word-spacing:20.156332px;}
.ws74{word-spacing:21.601844px;}
.ws47{word-spacing:22.530704px;}
.ws35{word-spacing:22.532324px;}
.ws49{word-spacing:22.532894px;}
.ws34{word-spacing:22.533464px;}
.ws51{word-spacing:22.533944px;}
.ws60{word-spacing:22.534034px;}
.ws33{word-spacing:22.534514px;}
.ws2b{word-spacing:22.535084px;}
.ws2f{word-spacing:22.535564px;}
.ws3e{word-spacing:22.536704px;}
.ws38{word-spacing:22.537274px;}
.ws3c{word-spacing:22.537844px;}
.ws4{word-spacing:22.834279px;}
.ws5{word-spacing:22.894055px;}
.ws62{word-spacing:25.237258px;}
.ws68{word-spacing:26.827469px;}
.ws1e{word-spacing:26.899020px;}
.wsa{word-spacing:27.389180px;}
.ws0{word-spacing:31.091012px;}
.ws21{word-spacing:31.322414px;}
.ws1a{word-spacing:32.192873px;}
.ws43{word-spacing:32.649433px;}
.ws6{word-spacing:38.208564px;}
.ws6e{word-spacing:55.122538px;}
.ws3{word-spacing:55.232654px;}
.ws31{word-spacing:80.625869px;}
.wsd{word-spacing:96.750773px;}
.ws41{word-spacing:115.165392px;}
.ws4e{word-spacing:146.547582px;}
.ws32{word-spacing:177.929772px;}
.ws5e{word-spacing:554.598017px;}
.ws40{word-spacing:680.126777px;}
._d{margin-left:-30.505141px;}
._13{margin-left:-29.493256px;}
._1{margin-left:-8.160100px;}
._1b{margin-left:-6.284041px;}
._3{margin-left:-5.133098px;}
._19{margin-left:-4.069040px;}
._0{margin-left:-2.685602px;}
._4{margin-left:-1.116151px;}
._10{width:1.673717px;}
._2{width:2.685602px;}
._47{width:4.179992px;}
._20{width:15.218893px;}
._23{width:16.314439px;}
._21{width:18.132691px;}
._1f{width:20.916061px;}
._22{width:21.955783px;}
._1c{width:25.768682px;}
._16{width:27.377225px;}
._3f{width:28.514264px;}
._24{width:31.485787px;}
._18{width:32.688654px;}
._41{width:34.976329px;}
._11{width:36.499007px;}
._1e{width:37.746691px;}
._15{width:39.468202px;}
._49{width:40.587632px;}
._1a{width:44.485052px;}
._17{width:47.282500px;}
._12{width:48.577978px;}
._14{width:51.064668px;}
._6{width:55.292430px;}
._f{width:58.914857px;}
._c{width:61.090663px;}
._e{width:68.383286px;}
._26{width:71.173154px;}
._3c{width:72.687130px;}
._38{width:78.912552px;}
._48{width:80.697600px;}
._3b{width:85.862653px;}
._1d{width:96.836850px;}
._31{width:115.226054px;}
._39{width:132.884399px;}
._2e{width:146.607991px;}
._43{width:164.266589px;}
._29{width:177.989864px;}
._30{width:249.622906px;}
._2f{width:258.417059px;}
._2c{width:289.799249px;}
._2d{width:321.177539px;}
._2b{width:352.559729px;}
._33{width:375.151666px;}
._45{width:383.945249px;}
._32{width:406.533856px;}
._44{width:415.324679px;}
._42{width:437.916046px;}
._2a{width:469.298236px;}
._34{width:500.680426px;}
._37{width:523.275602px;}
._3d{width:532.062616px;}
._28{width:563.444806px;}
._36{width:617.422172px;}
._46{width:626.209186px;}
._35{width:648.804362px;}
._40{width:680.186552px;}
._25{width:685.984786px;}
._3e{width:711.568742px;}
._3a{width:717.845180px;}
._27{width:742.950932px;}
._8{width:1710.411415px;}
._7{width:1977.111452px;}
._5{width:2204.629341px;}
._b{width:2230.606191px;}
._9{width:2247.566154px;}
._a{width:2347.415317px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.842800px;}
.fs3{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y27{bottom:63.168000px;}
.y54{bottom:118.314000px;}
.ya6{bottom:129.550500px;}
.y53{bottom:136.246500px;}
.y26{bottom:139.060500px;}
.ya5{bottom:147.483000px;}
.y25{bottom:156.993000px;}
.y52{bottom:160.156500px;}
.ya4{bottom:165.415500px;}
.y24{bottom:174.925500px;}
.yee{bottom:178.812000px;}
.ya3{bottom:183.348000px;}
.y51{bottom:184.066500px;}
.y23{bottom:192.858000px;}
.yed{bottom:196.744500px;}
.ya2{bottom:201.280500px;}
.y50{bottom:201.999000px;}
.y22{bottom:210.790500px;}
.yec{bottom:214.677000px;}
.ya1{bottom:219.214500px;}
.y4f{bottom:219.931500px;}
.y21{bottom:228.724500px;}
.yeb{bottom:232.609500px;}
.ya0{bottom:237.147000px;}
.y4e{bottom:243.843000px;}
.y20{bottom:246.657000px;}
.yea{bottom:250.543500px;}
.y9f{bottom:255.079500px;}
.y1f{bottom:264.589500px;}
.y4d{bottom:267.753000px;}
.ye9{bottom:268.476000px;}
.y9e{bottom:273.012000px;}
.y1e{bottom:282.522000px;}
.ye8{bottom:286.408500px;}
.y9d{bottom:290.944500px;}
.y4c{bottom:291.663000px;}
.y1d{bottom:300.454500px;}
.ye7{bottom:304.341000px;}
.y72{bottom:308.533500px;}
.y9c{bottom:308.877000px;}
.y4b{bottom:315.573000px;}
.ye6{bottom:322.273500px;}
.y71{bottom:326.466000px;}
.y9b{bottom:326.811000px;}
.y10b{bottom:328.860000px;}
.y4a{bottom:333.505500px;}
.y1c{bottom:336.025500px;}
.ye5{bottom:340.206000px;}
.y70{bottom:344.398500px;}
.y9a{bottom:344.743500px;}
.y10a{bottom:346.792500px;}
.y49{bottom:357.417000px;}
.y6f{bottom:362.331000px;}
.y99{bottom:362.676000px;}
.y109{bottom:364.725000px;}
.ye4{bottom:365.643000px;}
.y6e{bottom:380.265000px;}
.y98{bottom:380.608500px;}
.y108{bottom:382.657500px;}
.y1b{bottom:385.444500px;}
.y48{bottom:387.304500px;}
.y6d{bottom:398.197500px;}
.y97{bottom:398.541000px;}
.y107{bottom:400.591500px;}
.y1a{bottom:403.377000px;}
.y96{bottom:416.473500px;}
.ye3{bottom:416.536500px;}
.y106{bottom:418.524000px;}
.y47{bottom:420.036000px;}
.y19{bottom:421.309500px;}
.y6c{bottom:428.085000px;}
.y95{bottom:434.407500px;}
.y105{bottom:436.456500px;}
.y18{bottom:439.242000px;}
.y126{bottom:443.779500px;}
.y94{bottom:452.340000px;}
.y17{bottom:457.176000px;}
.y6b{bottom:457.972500px;}
.y125{bottom:461.712000px;}
.y104{bottom:461.892000px;}
.y46{bottom:469.455000px;}
.y93{bottom:470.272500px;}
.ye2{bottom:477.082500px;}
.y124{bottom:479.644500px;}
.y45{bottom:487.387500px;}
.y6a{bottom:487.861500px;}
.y92{bottom:488.205000px;}
.y16{bottom:490.051500px;}
.ye1{bottom:495.015000px;}
.y91{bottom:506.137500px;}
.y123{bottom:507.228000px;}
.y15{bottom:507.985500px;}
.y103{bottom:512.787000px;}
.ye0{bottom:512.947500px;}
.y69{bottom:517.749000px;}
.y44{bottom:522.127500px;}
.y90{bottom:524.070000px;}
.y14{bottom:525.918000px;}
.ydf{bottom:530.881500px;}
.y8f{bottom:542.004000px;}
.y13{bottom:543.850500px;}
.y122{bottom:546.072000px;}
.y68{bottom:547.636500px;}
.yde{bottom:548.814000px;}
.y8e{bottom:559.936500px;}
.y12{bottom:561.783000px;}
.yc1{bottom:562.977000px;}
.y121{bottom:564.004500px;}
.ydd{bottom:566.746500px;}
.y43{bottom:571.546500px;}
.y102{bottom:573.333000px;}
.y67{bottom:577.524000px;}
.y8d{bottom:577.869000px;}
.y11{bottom:579.715500px;}
.yc0{bottom:580.909500px;}
.y120{bottom:581.937000px;}
.ydc{bottom:584.679000px;}
.y42{bottom:589.479000px;}
.y101{bottom:591.265500px;}
.y8c{bottom:595.801500px;}
.y10{bottom:597.649500px;}
.ybf{bottom:598.843500px;}
.y11f{bottom:599.871000px;}
.ydb{bottom:602.611500px;}
.y41{bottom:607.413000px;}
.y100{bottom:609.198000px;}
.y8b{bottom:613.734000px;}
.yf{bottom:615.582000px;}
.y11e{bottom:617.803500px;}
.yda{bottom:620.544000px;}
.y40{bottom:625.345500px;}
.ybe{bottom:626.427000px;}
.yff{bottom:627.130500px;}
.y8a{bottom:631.666500px;}
.ye{bottom:633.514500px;}
.y11d{bottom:635.736000px;}
.y66{bottom:637.300500px;}
.yd9{bottom:638.478000px;}
.y3f{bottom:643.278000px;}
.yfe{bottom:645.063000px;}
.y89{bottom:649.600500px;}
.yd{bottom:651.447000px;}
.yd8{bottom:656.410500px;}
.y3e{bottom:661.210500px;}
.yfd{bottom:662.995500px;}
.y11c{bottom:663.319500px;}
.y88{bottom:667.533000px;}
.yc{bottom:669.379500px;}
.y65{bottom:672.040500px;}
.yd7{bottom:674.343000px;}
.y3d{bottom:679.143000px;}
.y87{bottom:685.465500px;}
.ybd{bottom:686.973000px;}
.yb{bottom:687.312000px;}
.yfc{bottom:688.432500px;}
.yd6{bottom:692.275500px;}
.y3c{bottom:697.075500px;}
.y86{bottom:703.398000px;}
.ybc{bottom:704.905500px;}
.yd5{bottom:710.208000px;}
.y3b{bottom:715.009500px;}
.ya{bottom:720.189000px;}
.y85{bottom:721.330500px;}
.y64{bottom:721.459500px;}
.ybb{bottom:722.838000px;}
.yd4{bottom:728.140500px;}
.y11b{bottom:729.328500px;}
.y3a{bottom:732.942000px;}
.y84{bottom:739.263000px;}
.yfb{bottom:739.326000px;}
.yba{bottom:740.770500px;}
.yd3{bottom:746.074500px;}
.y39{bottom:750.874500px;}
.y63{bottom:751.348500px;}
.y9{bottom:753.066000px;}
.y11a{bottom:754.764000px;}
.y83{bottom:757.197000px;}
.yb9{bottom:758.703000px;}
.yd2{bottom:764.007000px;}
.y38{bottom:768.807000px;}
.y82{bottom:775.129500px;}
.yb8{bottom:776.637000px;}
.y119{bottom:780.201000px;}
.y62{bottom:781.236000px;}
.yd1{bottom:781.939500px;}
.y8{bottom:785.943000px;}
.y37{bottom:786.739500px;}
.y81{bottom:793.062000px;}
.yb7{bottom:794.569500px;}
.yd0{bottom:799.872000px;}
.y36{bottom:804.672000px;}
.y61{bottom:805.146000px;}
.yfa{bottom:805.252500px;}
.y80{bottom:810.994500px;}
.yb6{bottom:812.502000px;}
.ycf{bottom:817.804500px;}
.y7{bottom:818.820000px;}
.y118{bottom:818.970000px;}
.yf9{bottom:823.185000px;}
.y7f{bottom:828.927000px;}
.y60{bottom:829.056000px;}
.yb5{bottom:830.434500px;}
.y35{bottom:834.561000px;}
.yce{bottom:835.738500px;}
.y117{bottom:836.902500px;}
.yf8{bottom:841.117500px;}
.y7e{bottom:846.859500px;}
.yb4{bottom:848.367000px;}
.y6{bottom:851.697000px;}
.y5f{bottom:852.966000px;}
.ycd{bottom:853.671000px;}
.yf7{bottom:859.050000px;}
.y34{bottom:864.448500px;}
.y116{bottom:864.486000px;}
.y7d{bottom:864.793500px;}
.yb3{bottom:866.299500px;}
.ycc{bottom:871.603500px;}
.y5e{bottom:876.877500px;}
.yf6{bottom:876.982500px;}
.y33{bottom:882.381000px;}
.y7c{bottom:882.726000px;}
.yb2{bottom:884.233500px;}
.ycb{bottom:889.536000px;}
.yf5{bottom:894.916500px;}
.y32{bottom:900.313500px;}
.y7b{bottom:900.658500px;}
.y5d{bottom:900.787500px;}
.y5{bottom:901.381500px;}
.yb1{bottom:902.166000px;}
.y115{bottom:906.319500px;}
.yca{bottom:907.468500px;}
.yf4{bottom:912.849000px;}
.y7a{bottom:918.591000px;}
.y5c{bottom:918.720000px;}
.yb0{bottom:920.098500px;}
.y114{bottom:924.252000px;}
.yc9{bottom:925.401000px;}
.y31{bottom:930.202500px;}
.yf3{bottom:930.781500px;}
.y79{bottom:936.523500px;}
.y5b{bottom:936.652500px;}
.yaf{bottom:938.031000px;}
.y113{bottom:942.184500px;}
.yc8{bottom:943.335000px;}
.y30{bottom:948.135000px;}
.yf2{bottom:948.714000px;}
.y78{bottom:954.456000px;}
.yae{bottom:955.963500px;}
.y112{bottom:960.117000px;}
.yc7{bottom:961.267500px;}
.y4{bottom:965.743500px;}
.y2f{bottom:966.067500px;}
.y5a{bottom:966.541500px;}
.yad{bottom:973.896000px;}
.yf1{bottom:974.149500px;}
.y111{bottom:978.049500px;}
.yc6{bottom:979.200000px;}
.y77{bottom:979.893000px;}
.y2e{bottom:984.000000px;}
.yac{bottom:991.830000px;}
.y110{bottom:995.982000px;}
.y59{bottom:996.429000px;}
.y3{bottom:1000.912500px;}
.y2d{bottom:1001.932500px;}
.yc5{bottom:1004.635500px;}
.yab{bottom:1009.762500px;}
.yf0{bottom:1010.013000px;}
.y58{bottom:1020.339000px;}
.y10f{bottom:1023.567000px;}
.yaa{bottom:1027.695000px;}
.yef{bottom:1027.945500px;}
.y76{bottom:1030.635000px;}
.y2c{bottom:1036.674000px;}
.y57{bottom:1038.271500px;}
.y2{bottom:1044.249000px;}
.ya9{bottom:1045.627500px;}
.yc4{bottom:1055.530500px;}
.ya8{bottom:1063.560000px;}
.y10e{bottom:1065.399000px;}
.y56{bottom:1068.159000px;}
.y75{bottom:1069.413000px;}
.y1{bottom:1077.126000px;}
.y10d{bottom:1083.331500px;}
.y2b{bottom:1086.093000px;}
.ya7{bottom:1088.995500px;}
.yc3{bottom:1094.374500px;}
.y74{bottom:1096.998000px;}
.y55{bottom:1098.048000px;}
.y10c{bottom:1101.265500px;}
.y2a{bottom:1104.025500px;}
.yc2{bottom:1112.307000px;}
.y29{bottom:1121.958000px;}
.y73{bottom:1136.005500px;}
.y28{bottom:1139.890500px;}
.h7{height:41.484266px;}
.h5{height:41.663593px;}
.h6{height:44.831700px;}
.ha{height:49.473619px;}
.h9{height:49.479619px;}
.h8{height:50.068378px;}
.h3{height:50.498765px;}
.h4{height:60.081886px;}
.h2{height:77.366008px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:108.000000px;}
.xc{left:115.471500px;}
.xf{left:127.387500px;}
.x6{left:130.416000px;}
.xd{left:132.283500px;}
.xa{left:139.381500px;}
.x9{left:145.360500px;}
.xe{left:148.348500px;}
.x3{left:150.610500px;}
.x7{left:164.787000px;}
.xb{left:170.764500px;}
.x1{left:284.884500px;}
.x4{left:373.905000px;}
.x11{left:417.316500px;}
.x10{left:420.387000px;}
.x2{left:425.131500px;}
.x8{left:442.720500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:2.658245pt;}
.ls4{letter-spacing:20.364911pt;}
.ls3{letter-spacing:26.563713pt;}
.ls0{letter-spacing:26.566933pt;}
.ls2{letter-spacing:26.568027pt;}
.ls8{letter-spacing:26.844911pt;}
.ls6{letter-spacing:69.662400pt;}
.ls7{letter-spacing:69.666079pt;}
.ws19{word-spacing:-14.760588pt;}
.ws23{word-spacing:-2.964870pt;}
.ws5d{word-spacing:-2.858602pt;}
.ws26{word-spacing:-2.061594pt;}
.ws66{word-spacing:-1.795925pt;}
.ws4f{word-spacing:-1.583389pt;}
.ws3a{word-spacing:-0.945783pt;}
.ws2d{word-spacing:-0.733247pt;}
.ws2e{word-spacing:-0.710724pt;}
.ws18{word-spacing:-0.361310pt;}
.ws29{word-spacing:-0.095641pt;}
.ws2{word-spacing:-0.076513pt;}
.ws28{word-spacing:-0.053134pt;}
.ws17{word-spacing:0.000000pt;}
.ws24{word-spacing:0.063761pt;}
.ws3b{word-spacing:0.223162pt;}
.ws61{word-spacing:0.382564pt;}
.ws5a{word-spacing:0.541965pt;}
.ws25{word-spacing:0.754501pt;}
.ws48{word-spacing:0.860769pt;}
.wsf{word-spacing:1.657777pt;}
.ws6f{word-spacing:1.817178pt;}
.ws15{word-spacing:2.242249pt;}
.ws4d{word-spacing:2.295383pt;}
.ws56{word-spacing:2.324267pt;}
.ws58{word-spacing:2.348517pt;}
.ws50{word-spacing:2.614186pt;}
.ws10{word-spacing:2.773588pt;}
.ws54{word-spacing:2.879856pt;}
.wsc{word-spacing:2.932989pt;}
.ws8{word-spacing:2.986123pt;}
.ws22{word-spacing:3.039257pt;}
.ws64{word-spacing:3.145525pt;}
.ws3d{word-spacing:3.411194pt;}
.ws1{word-spacing:3.443098pt;}
.ws14{word-spacing:3.517462pt;}
.ws1b{word-spacing:3.995667pt;}
.ws5f{word-spacing:4.048801pt;}
.ws4b{word-spacing:4.361040pt;}
.ws4c{word-spacing:4.361112pt;}
.ws67{word-spacing:4.367604pt;}
.ws4a{word-spacing:4.368319pt;}
.ws75{word-spacing:4.473872pt;}
.ws73{word-spacing:4.510468pt;}
.ws55{word-spacing:4.792675pt;}
.ws6a{word-spacing:5.005210pt;}
.ws6d{word-spacing:5.270880pt;}
.ws37{word-spacing:5.536549pt;}
.ws11{word-spacing:5.802218pt;}
.ws5b{word-spacing:5.908486pt;}
.ws76{word-spacing:6.067888pt;}
.ws16{word-spacing:6.121021pt;}
.ws2c{word-spacing:6.280423pt;}
.ws59{word-spacing:6.386691pt;}
.ws12{word-spacing:6.546092pt;}
.ws27{word-spacing:6.758628pt;}
.ws6b{word-spacing:6.811762pt;}
.ws6c{word-spacing:7.130565pt;}
.ws1c{word-spacing:7.289967pt;}
.ws71{word-spacing:7.586903pt;}
.ws72{word-spacing:7.608770pt;}
.ws3f{word-spacing:7.980707pt;}
.ws45{word-spacing:8.140108pt;}
.ws65{word-spacing:8.299510pt;}
.ws1d{word-spacing:8.352644pt;}
.ws44{word-spacing:8.512045pt;}
.ws13{word-spacing:8.565179pt;}
.ws52{word-spacing:8.618313pt;}
.ws20{word-spacing:8.830849pt;}
.wse{word-spacing:9.255920pt;}
.ws70{word-spacing:9.415321pt;}
.ws1f{word-spacing:9.680991pt;}
.ws69{word-spacing:9.734124pt;}
.ws77{word-spacing:10.318597pt;}
.ws9{word-spacing:11.328140pt;}
.ws7{word-spacing:11.381274pt;}
.ws5c{word-spacing:11.540676pt;}
.ws30{word-spacing:11.764111pt;}
.ws2a{word-spacing:12.550219pt;}
.ws53{word-spacing:13.931700pt;}
.ws36{word-spacing:14.728708pt;}
.ws42{word-spacing:15.047511pt;}
.ws39{word-spacing:16.694661pt;}
.ws46{word-spacing:16.960330pt;}
.ws57{word-spacing:17.029959pt;}
.wsb{word-spacing:17.704204pt;}
.ws63{word-spacing:17.916740pt;}
.ws74{word-spacing:19.201639pt;}
.ws47{word-spacing:20.027293pt;}
.ws35{word-spacing:20.028733pt;}
.ws49{word-spacing:20.029239pt;}
.ws34{word-spacing:20.029746pt;}
.ws51{word-spacing:20.030173pt;}
.ws60{word-spacing:20.030253pt;}
.ws33{word-spacing:20.030679pt;}
.ws2b{word-spacing:20.031186pt;}
.ws2f{word-spacing:20.031613pt;}
.ws3e{word-spacing:20.032626pt;}
.ws38{word-spacing:20.033133pt;}
.ws3c{word-spacing:20.033639pt;}
.ws4{word-spacing:20.297137pt;}
.ws5{word-spacing:20.350271pt;}
.ws62{word-spacing:22.433119pt;}
.ws68{word-spacing:23.846639pt;}
.ws1e{word-spacing:23.910240pt;}
.wsa{word-spacing:24.345938pt;}
.ws0{word-spacing:27.636455pt;}
.ws21{word-spacing:27.842146pt;}
.ws1a{word-spacing:28.615887pt;}
.ws43{word-spacing:29.021718pt;}
.ws6{word-spacing:33.963168pt;}
.ws6e{word-spacing:48.997812pt;}
.ws3{word-spacing:49.095693pt;}
.ws31{word-spacing:71.667439pt;}
.wsd{word-spacing:86.000687pt;}
.ws41{word-spacing:102.369237pt;}
.ws4e{word-spacing:130.264517pt;}
.ws32{word-spacing:158.159797pt;}
.ws5e{word-spacing:492.976015pt;}
.ws40{word-spacing:604.557135pt;}
._d{margin-left:-27.115681pt;}
._13{margin-left:-26.216227pt;}
._1{margin-left:-7.253422pt;}
._1b{margin-left:-5.585814pt;}
._3{margin-left:-4.562754pt;}
._19{margin-left:-3.616925pt;}
._0{margin-left:-2.387202pt;}
._4{margin-left:-0.992134pt;}
._10{width:1.487748pt;}
._2{width:2.387202pt;}
._47{width:3.715549pt;}
._20{width:13.527905pt;}
._23{width:14.501724pt;}
._21{width:16.117948pt;}
._1f{width:18.592054pt;}
._22{width:19.516252pt;}
._1c{width:22.905495pt;}
._16{width:24.335311pt;}
._3f{width:25.346013pt;}
._24{width:27.987366pt;}
._18{width:29.056581pt;}
._41{width:31.090070pt;}
._11{width:32.443562pt;}
._1e{width:33.552614pt;}
._15{width:35.082846pt;}
._49{width:36.077895pt;}
._1a{width:39.542269pt;}
._17{width:42.028889pt;}
._12{width:43.180425pt;}
._14{width:45.390816pt;}
._6{width:49.148827pt;}
._f{width:52.368762pt;}
._c{width:54.302812pt;}
._e{width:60.785143pt;}
._26{width:63.265026pt;}
._3c{width:64.610782pt;}
._38{width:70.144491pt;}
._48{width:71.731200pt;}
._3b{width:76.322359pt;}
._1d{width:86.077200pt;}
._31{width:102.423159pt;}
._39{width:118.119466pt;}
._2e{width:130.318214pt;}
._43{width:146.014746pt;}
._29{width:158.213213pt;}
._30{width:221.887027pt;}
._2f{width:229.704052pt;}
._2c{width:257.599332pt;}
._2d{width:285.491146pt;}
._2b{width:313.386426pt;}
._33{width:333.468147pt;}
._45{width:341.284666pt;}
._32{width:361.363427pt;}
._44{width:369.177492pt;}
._42{width:389.258707pt;}
._2a{width:417.153987pt;}
._34{width:445.049267pt;}
._37{width:465.133869pt;}
._3d{width:472.944547pt;}
._28{width:500.839827pt;}
._36{width:548.819709pt;}
._46{width:556.630387pt;}
._35{width:576.714989pt;}
._40{width:604.610269pt;}
._25{width:609.764254pt;}
._3e{width:632.505549pt;}
._3a{width:638.084605pt;}
._27{width:660.400829pt;}
._8{width:1520.365702pt;}
._7{width:1757.432402pt;}
._5{width:1959.670525pt;}
._b{width:1982.761059pt;}
._9{width:1997.836582pt;}
._a{width:2086.591393pt;}
.fs4{font-size:37.193600pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:56.149333pt;}
.y54{bottom:105.168000pt;}
.ya6{bottom:115.156000pt;}
.y53{bottom:121.108000pt;}
.y26{bottom:123.609333pt;}
.ya5{bottom:131.096000pt;}
.y25{bottom:139.549333pt;}
.y52{bottom:142.361333pt;}
.ya4{bottom:147.036000pt;}
.y24{bottom:155.489333pt;}
.yee{bottom:158.944000pt;}
.ya3{bottom:162.976000pt;}
.y51{bottom:163.614667pt;}
.y23{bottom:171.429333pt;}
.yed{bottom:174.884000pt;}
.ya2{bottom:178.916000pt;}
.y50{bottom:179.554667pt;}
.y22{bottom:187.369333pt;}
.yec{bottom:190.824000pt;}
.ya1{bottom:194.857333pt;}
.y4f{bottom:195.494667pt;}
.y21{bottom:203.310667pt;}
.yeb{bottom:206.764000pt;}
.ya0{bottom:210.797333pt;}
.y4e{bottom:216.749333pt;}
.y20{bottom:219.250667pt;}
.yea{bottom:222.705333pt;}
.y9f{bottom:226.737333pt;}
.y1f{bottom:235.190667pt;}
.y4d{bottom:238.002667pt;}
.ye9{bottom:238.645333pt;}
.y9e{bottom:242.677333pt;}
.y1e{bottom:251.130667pt;}
.ye8{bottom:254.585333pt;}
.y9d{bottom:258.617333pt;}
.y4c{bottom:259.256000pt;}
.y1d{bottom:267.070667pt;}
.ye7{bottom:270.525333pt;}
.y72{bottom:274.252000pt;}
.y9c{bottom:274.557333pt;}
.y4b{bottom:280.509333pt;}
.ye6{bottom:286.465333pt;}
.y71{bottom:290.192000pt;}
.y9b{bottom:290.498667pt;}
.y10b{bottom:292.320000pt;}
.y4a{bottom:296.449333pt;}
.y1c{bottom:298.689333pt;}
.ye5{bottom:302.405333pt;}
.y70{bottom:306.132000pt;}
.y9a{bottom:306.438667pt;}
.y10a{bottom:308.260000pt;}
.y49{bottom:317.704000pt;}
.y6f{bottom:322.072000pt;}
.y99{bottom:322.378667pt;}
.y109{bottom:324.200000pt;}
.ye4{bottom:325.016000pt;}
.y6e{bottom:338.013333pt;}
.y98{bottom:338.318667pt;}
.y108{bottom:340.140000pt;}
.y1b{bottom:342.617333pt;}
.y48{bottom:344.270667pt;}
.y6d{bottom:353.953333pt;}
.y97{bottom:354.258667pt;}
.y107{bottom:356.081333pt;}
.y1a{bottom:358.557333pt;}
.y96{bottom:370.198667pt;}
.ye3{bottom:370.254667pt;}
.y106{bottom:372.021333pt;}
.y47{bottom:373.365333pt;}
.y19{bottom:374.497333pt;}
.y6c{bottom:380.520000pt;}
.y95{bottom:386.140000pt;}
.y105{bottom:387.961333pt;}
.y18{bottom:390.437333pt;}
.y126{bottom:394.470667pt;}
.y94{bottom:402.080000pt;}
.y17{bottom:406.378667pt;}
.y6b{bottom:407.086667pt;}
.y125{bottom:410.410667pt;}
.y104{bottom:410.570667pt;}
.y46{bottom:417.293333pt;}
.y93{bottom:418.020000pt;}
.ye2{bottom:424.073333pt;}
.y124{bottom:426.350667pt;}
.y45{bottom:433.233333pt;}
.y6a{bottom:433.654667pt;}
.y92{bottom:433.960000pt;}
.y16{bottom:435.601333pt;}
.ye1{bottom:440.013333pt;}
.y91{bottom:449.900000pt;}
.y123{bottom:450.869333pt;}
.y15{bottom:451.542667pt;}
.y103{bottom:455.810667pt;}
.ye0{bottom:455.953333pt;}
.y69{bottom:460.221333pt;}
.y44{bottom:464.113333pt;}
.y90{bottom:465.840000pt;}
.y14{bottom:467.482667pt;}
.ydf{bottom:471.894667pt;}
.y8f{bottom:481.781333pt;}
.y13{bottom:483.422667pt;}
.y122{bottom:485.397333pt;}
.y68{bottom:486.788000pt;}
.yde{bottom:487.834667pt;}
.y8e{bottom:497.721333pt;}
.y12{bottom:499.362667pt;}
.yc1{bottom:500.424000pt;}
.y121{bottom:501.337333pt;}
.ydd{bottom:503.774667pt;}
.y43{bottom:508.041333pt;}
.y102{bottom:509.629333pt;}
.y67{bottom:513.354667pt;}
.y8d{bottom:513.661333pt;}
.y11{bottom:515.302667pt;}
.yc0{bottom:516.364000pt;}
.y120{bottom:517.277333pt;}
.ydc{bottom:519.714667pt;}
.y42{bottom:523.981333pt;}
.y101{bottom:525.569333pt;}
.y8c{bottom:529.601333pt;}
.y10{bottom:531.244000pt;}
.ybf{bottom:532.305333pt;}
.y11f{bottom:533.218667pt;}
.ydb{bottom:535.654667pt;}
.y41{bottom:539.922667pt;}
.y100{bottom:541.509333pt;}
.y8b{bottom:545.541333pt;}
.yf{bottom:547.184000pt;}
.y11e{bottom:549.158667pt;}
.yda{bottom:551.594667pt;}
.y40{bottom:555.862667pt;}
.ybe{bottom:556.824000pt;}
.yff{bottom:557.449333pt;}
.y8a{bottom:561.481333pt;}
.ye{bottom:563.124000pt;}
.y11d{bottom:565.098667pt;}
.y66{bottom:566.489333pt;}
.yd9{bottom:567.536000pt;}
.y3f{bottom:571.802667pt;}
.yfe{bottom:573.389333pt;}
.y89{bottom:577.422667pt;}
.yd{bottom:579.064000pt;}
.yd8{bottom:583.476000pt;}
.y3e{bottom:587.742667pt;}
.yfd{bottom:589.329333pt;}
.y11c{bottom:589.617333pt;}
.y88{bottom:593.362667pt;}
.yc{bottom:595.004000pt;}
.y65{bottom:597.369333pt;}
.yd7{bottom:599.416000pt;}
.y3d{bottom:603.682667pt;}
.y87{bottom:609.302667pt;}
.ybd{bottom:610.642667pt;}
.yb{bottom:610.944000pt;}
.yfc{bottom:611.940000pt;}
.yd6{bottom:615.356000pt;}
.y3c{bottom:619.622667pt;}
.y86{bottom:625.242667pt;}
.ybc{bottom:626.582667pt;}
.yd5{bottom:631.296000pt;}
.y3b{bottom:635.564000pt;}
.ya{bottom:640.168000pt;}
.y85{bottom:641.182667pt;}
.y64{bottom:641.297333pt;}
.ybb{bottom:642.522667pt;}
.yd4{bottom:647.236000pt;}
.y11b{bottom:648.292000pt;}
.y3a{bottom:651.504000pt;}
.y84{bottom:657.122667pt;}
.yfb{bottom:657.178667pt;}
.yba{bottom:658.462667pt;}
.yd3{bottom:663.177333pt;}
.y39{bottom:667.444000pt;}
.y63{bottom:667.865333pt;}
.y9{bottom:669.392000pt;}
.y11a{bottom:670.901333pt;}
.y83{bottom:673.064000pt;}
.yb9{bottom:674.402667pt;}
.yd2{bottom:679.117333pt;}
.y38{bottom:683.384000pt;}
.y82{bottom:689.004000pt;}
.yb8{bottom:690.344000pt;}
.y119{bottom:693.512000pt;}
.y62{bottom:694.432000pt;}
.yd1{bottom:695.057333pt;}
.y8{bottom:698.616000pt;}
.y37{bottom:699.324000pt;}
.y81{bottom:704.944000pt;}
.yb7{bottom:706.284000pt;}
.yd0{bottom:710.997333pt;}
.y36{bottom:715.264000pt;}
.y61{bottom:715.685333pt;}
.yfa{bottom:715.780000pt;}
.y80{bottom:720.884000pt;}
.yb6{bottom:722.224000pt;}
.ycf{bottom:726.937333pt;}
.y7{bottom:727.840000pt;}
.y118{bottom:727.973333pt;}
.yf9{bottom:731.720000pt;}
.y7f{bottom:736.824000pt;}
.y60{bottom:736.938667pt;}
.yb5{bottom:738.164000pt;}
.y35{bottom:741.832000pt;}
.yce{bottom:742.878667pt;}
.y117{bottom:743.913333pt;}
.yf8{bottom:747.660000pt;}
.y7e{bottom:752.764000pt;}
.yb4{bottom:754.104000pt;}
.y6{bottom:757.064000pt;}
.y5f{bottom:758.192000pt;}
.ycd{bottom:758.818667pt;}
.yf7{bottom:763.600000pt;}
.y34{bottom:768.398667pt;}
.y116{bottom:768.432000pt;}
.y7d{bottom:768.705333pt;}
.yb3{bottom:770.044000pt;}
.ycc{bottom:774.758667pt;}
.y5e{bottom:779.446667pt;}
.yf6{bottom:779.540000pt;}
.y33{bottom:784.338667pt;}
.y7c{bottom:784.645333pt;}
.yb2{bottom:785.985333pt;}
.ycb{bottom:790.698667pt;}
.yf5{bottom:795.481333pt;}
.y32{bottom:800.278667pt;}
.y7b{bottom:800.585333pt;}
.y5d{bottom:800.700000pt;}
.y5{bottom:801.228000pt;}
.yb1{bottom:801.925333pt;}
.y115{bottom:805.617333pt;}
.yca{bottom:806.638667pt;}
.yf4{bottom:811.421333pt;}
.y7a{bottom:816.525333pt;}
.y5c{bottom:816.640000pt;}
.yb0{bottom:817.865333pt;}
.y114{bottom:821.557333pt;}
.yc9{bottom:822.578667pt;}
.y31{bottom:826.846667pt;}
.yf3{bottom:827.361333pt;}
.y79{bottom:832.465333pt;}
.y5b{bottom:832.580000pt;}
.yaf{bottom:833.805333pt;}
.y113{bottom:837.497333pt;}
.yc8{bottom:838.520000pt;}
.y30{bottom:842.786667pt;}
.yf2{bottom:843.301333pt;}
.y78{bottom:848.405333pt;}
.yae{bottom:849.745333pt;}
.y112{bottom:853.437333pt;}
.yc7{bottom:854.460000pt;}
.y4{bottom:858.438667pt;}
.y2f{bottom:858.726667pt;}
.y5a{bottom:859.148000pt;}
.yad{bottom:865.685333pt;}
.yf1{bottom:865.910667pt;}
.y111{bottom:869.377333pt;}
.yc6{bottom:870.400000pt;}
.y77{bottom:871.016000pt;}
.y2e{bottom:874.666667pt;}
.yac{bottom:881.626667pt;}
.y110{bottom:885.317333pt;}
.y59{bottom:885.714667pt;}
.y3{bottom:889.700000pt;}
.y2d{bottom:890.606667pt;}
.yc5{bottom:893.009333pt;}
.yab{bottom:897.566667pt;}
.yf0{bottom:897.789333pt;}
.y58{bottom:906.968000pt;}
.y10f{bottom:909.837333pt;}
.yaa{bottom:913.506667pt;}
.yef{bottom:913.729333pt;}
.y76{bottom:916.120000pt;}
.y2c{bottom:921.488000pt;}
.y57{bottom:922.908000pt;}
.y2{bottom:928.221333pt;}
.ya9{bottom:929.446667pt;}
.yc4{bottom:938.249333pt;}
.ya8{bottom:945.386667pt;}
.y10e{bottom:947.021333pt;}
.y56{bottom:949.474667pt;}
.y75{bottom:950.589333pt;}
.y1{bottom:957.445333pt;}
.y10d{bottom:962.961333pt;}
.y2b{bottom:965.416000pt;}
.ya7{bottom:967.996000pt;}
.yc3{bottom:972.777333pt;}
.y74{bottom:975.109333pt;}
.y55{bottom:976.042667pt;}
.y10c{bottom:978.902667pt;}
.y2a{bottom:981.356000pt;}
.yc2{bottom:988.717333pt;}
.y29{bottom:997.296000pt;}
.y73{bottom:1009.782667pt;}
.y28{bottom:1013.236000pt;}
.h7{height:36.874903pt;}
.h5{height:37.034305pt;}
.h6{height:39.850400pt;}
.ha{height:43.976550pt;}
.h9{height:43.981884pt;}
.h8{height:44.505225pt;}
.h3{height:44.887791pt;}
.h4{height:53.406121pt;}
.h2{height:68.769785pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:96.000000pt;}
.xc{left:102.641333pt;}
.xf{left:113.233333pt;}
.x6{left:115.925333pt;}
.xd{left:117.585333pt;}
.xa{left:123.894667pt;}
.x9{left:129.209333pt;}
.xe{left:131.865333pt;}
.x3{left:133.876000pt;}
.x7{left:146.477333pt;}
.xb{left:151.790667pt;}
.x1{left:253.230667pt;}
.x4{left:332.360000pt;}
.x11{left:370.948000pt;}
.x10{left:373.677333pt;}
.x2{left:377.894667pt;}
.x8{left:393.529333pt;}
}




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