
    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_f0e794f23310595f07726d7a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_91b9ada19b036260a3d4fc1f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_33e57a7928f52de2dcbc0c8f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_58813a5968dd747235de85bc.woff')format("woff");}.ff4{font-family:ff4;line-height:0.932129;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_52404484847577b05542c60f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_ba5d104b293ad4c2d020caf5.woff')format("woff");}.ff6{font-family:ff6;line-height:0.726562;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_769d70f6dbb58e1c2affd9e3.woff')format("woff");}.ff7{font-family:ff7;line-height:0.793457;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_0155b3695034ceaefde080ef.woff')format("woff");}.ff8{font-family:ff8;line-height:0.965820;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_284a3f943b5190423d323ecc.woff')format("woff");}.ff9{font-family:ff9;line-height:0.940430;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_6806c5aa5c390d785fff0bb0.woff')format("woff");}.ffa{font-family:ffa;line-height:0.973145;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:ffb;src:url('chunks/assets/font_3f588a987d6028dacfc66e03.woff')format("woff");}.ffb{font-family:ffb;line-height:1.126953;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:ffc;src:url('chunks/assets/font_a38d92d3c0af0c55fcd1a52f.woff')format("woff");}.ffc{font-family:ffc;line-height:0.962402;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:ffd;src:url('chunks/assets/font_62eb2f72cc3c7054f476cc61.woff')format("woff");}.ffd{font-family:ffd;line-height:0.916992;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:ffe;src:url('chunks/assets/font_9ec40b8a527a5dfeba393b5c.woff')format("woff");}.ffe{font-family:ffe;line-height:0.952148;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:fff;src:url('chunks/assets/font_a3361013753b8317fbe0c542.woff')format("woff");}.fff{font-family:fff;line-height:0.722656;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:ff10;src:url('chunks/assets/font_4ed95879b329f6fabede1948.woff')format("woff");}.ff10{font-family:ff10;line-height:0.666504;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:ff11;src:url('chunks/assets/font_05136e15345ec44c1158067b.woff')format("woff");}.ff11{font-family:ff11;line-height:0.972656;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;}
.m3{transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.879999px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.010553px;}
.ls0{letter-spacing:0.021238px;}
.ls2{letter-spacing:0.073080px;}
.ls4{letter-spacing:0.974640px;}
.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;}
}
.ws2{word-spacing:-22.407831px;}
.ws0{word-spacing:-18.021231px;}
.ws1{word-spacing:-17.999993px;}
.ws3{word-spacing:-15.179034px;}
.ws6{word-spacing:-13.715995px;}
.ws5{word-spacing:-13.013995px;}
.ws4{word-spacing:0.000000px;}
._3{margin-left:-670.683089px;}
._2{margin-left:-607.178273px;}
._b{margin-left:-469.513486px;}
._6{margin-left:-334.821628px;}
._8{margin-left:-87.372063px;}
._9{margin-left:-69.371752px;}
._7{margin-left:-52.559242px;}
._a{margin-left:-34.559225px;}
._1{margin-left:-25.559162px;}
._5{margin-left:-16.559201px;}
._0{margin-left:-1.187579px;}
._4{width:1.472618px;}
._14{width:2.477517px;}
._f{width:3.490380px;}
._10{width:4.780956px;}
._13{width:5.963726px;}
._d{width:7.613866px;}
._e{width:8.678301px;}
._11{width:9.956442px;}
._12{width:11.089827px;}
._21{width:14.604198px;}
._25{width:16.046962px;}
._c{width:17.371912px;}
._26{width:19.099397px;}
._16{width:20.485568px;}
._1e{width:21.526379px;}
._2b{width:22.538928px;}
._1d{width:23.562770px;}
._18{width:25.002983px;}
._15{width:26.030947px;}
._1b{width:27.754076px;}
._1c{width:29.026842px;}
._2d{width:30.731972px;}
._17{width:32.145014px;}
._2c{width:33.577371px;}
._27{width:35.431241px;}
._1a{width:38.209602px;}
._19{width:39.541226px;}
._22{width:41.223044px;}
._23{width:42.331102px;}
._20{width:45.026253px;}
._2e{width:46.105204px;}
._24{width:47.403547px;}
._28{width:49.119122px;}
._1f{width:52.052310px;}
._2a{width:54.532934px;}
._29{width:153.757818px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,32,96);}
.fc3{color:rgb(0,0,128);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:9.359996px;}
.fs3{font-size:12.239995px;}
.fs9{font-size:23.759990px;}
.fsc{font-size:35.999986px;}
.fs6{font-size:38.879984px;}
.fsd{font-size:41.759983px;}
.fs5{font-size:48.239981px;}
.fs8{font-size:53.999978px;}
.fs7{font-size:59.759976px;}
.fs0{font-size:71.999971px;}
.fsb{font-size:74.879970px;}
.fs1{font-size:84.239966px;}
.fs4{font-size:95.759962px;}
.fs2{font-size:107.999957px;}
.y48{bottom:-15.661023px;}
.y0{bottom:0.000000px;}
.y8{bottom:2.878921px;}
.y78{bottom:3.059073px;}
.y1c{bottom:3.059079px;}
.y7b{bottom:3.059087px;}
.y7d{bottom:3.059093px;}
.y7f{bottom:3.059100px;}
.y81{bottom:3.059106px;}
.y83{bottom:3.059113px;}
.y85{bottom:3.059120px;}
.y26{bottom:3.059123px;}
.y87{bottom:3.059126px;}
.y89{bottom:3.059133px;}
.y8b{bottom:3.059139px;}
.yb2{bottom:3.059142px;}
.y8d{bottom:3.059146px;}
.yb4{bottom:3.059150px;}
.y8f{bottom:3.059153px;}
.y91{bottom:3.059159px;}
.y93{bottom:3.059166px;}
.y95{bottom:3.059172px;}
.y97{bottom:3.059179px;}
.y99{bottom:3.059186px;}
.y9b{bottom:3.059192px;}
.y9d{bottom:3.059199px;}
.y9f{bottom:3.059205px;}
.ya1{bottom:3.059212px;}
.y13{bottom:3.239032px;}
.y23{bottom:3.419111px;}
.y43{bottom:3.778940px;}
.ya{bottom:4.138945px;}
.y1e{bottom:4.319079px;}
.y4{bottom:4.320028px;}
.y15{bottom:4.859040px;}
.y19{bottom:4.859058px;}
.y21{bottom:4.859096px;}
.y6{bottom:58.620277px;}
.y3{bottom:75.000240px;}
.y5{bottom:78.960268px;}
.y2{bottom:79.319968px;}
.y40{bottom:123.239951px;}
.yca{bottom:130.079948px;}
.y75{bottom:130.619948px;}
.yb0{bottom:130.799948px;}
.y3f{bottom:146.279941px;}
.yc9{bottom:153.119939px;}
.y74{bottom:153.479939px;}
.yaf{bottom:153.839938px;}
.y3e{bottom:169.319932px;}
.yc8{bottom:176.159930px;}
.y73{bottom:176.519929px;}
.yae{bottom:176.879929px;}
.y3d{bottom:192.179923px;}
.yc7{bottom:199.019920px;}
.y72{bottom:199.559920px;}
.yad{bottom:199.919920px;}
.y3c{bottom:215.219914px;}
.yc6{bottom:219.539912px;}
.y71{bottom:222.599911px;}
.yac{bottom:222.959911px;}
.y3b{bottom:238.259905px;}
.yc5{bottom:240.059904px;}
.y70{bottom:245.639902px;}
.yab{bottom:245.819902px;}
.y3a{bottom:261.299895px;}
.yc4{bottom:262.919895px;}
.y6f{bottom:268.679893px;}
.yaa{bottom:268.859892px;}
.y39{bottom:284.339886px;}
.yc3{bottom:285.959886px;}
.y6e{bottom:291.539883px;}
.ya9{bottom:291.899883px;}
.y38{bottom:307.199877px;}
.yc2{bottom:308.999876px;}
.y6d{bottom:314.579874px;}
.ya8{bottom:314.939874px;}
.y37{bottom:330.239868px;}
.yc1{bottom:332.039867px;}
.y6c{bottom:337.619865px;}
.ya7{bottom:337.979865px;}
.y36{bottom:353.279859px;}
.yc0{bottom:355.079858px;}
.y6b{bottom:360.659856px;}
.ya6{bottom:361.019856px;}
.y35{bottom:376.319849px;}
.ybf{bottom:378.119849px;}
.y6a{bottom:383.699847px;}
.ya5{bottom:383.879846px;}
.ybe{bottom:398.459841px;}
.y34{bottom:399.359840px;}
.y69{bottom:406.739837px;}
.ya4{bottom:406.919837px;}
.ybd{bottom:418.979832px;}
.y33{bottom:422.399831px;}
.y68{bottom:429.599828px;}
.ya3{bottom:429.959828px;}
.ybc{bottom:442.019823px;}
.y32{bottom:445.259822px;}
.y67{bottom:452.639819px;}
.ya2{bottom:452.999819px;}
.ybb{bottom:464.879814px;}
.ya0{bottom:467.400600px;}
.y31{bottom:468.299813px;}
.y66{bottom:475.679810px;}
.y9e{bottom:483.780600px;}
.y30{bottom:484.499806px;}
.yba{bottom:487.919805px;}
.y2f{bottom:488.279805px;}
.y65{bottom:498.719801px;}
.y9c{bottom:500.340600px;}
.y2e{bottom:508.799796px;}
.yb9{bottom:510.959796px;}
.y9a{bottom:516.720600px;}
.y64{bottom:521.759791px;}
.y2d{bottom:531.839787px;}
.y98{bottom:533.100600px;}
.yb8{bottom:533.999786px;}
.y63{bottom:544.799782px;}
.y96{bottom:549.660600px;}
.y2c{bottom:554.879778px;}
.yb7{bottom:557.039777px;}
.y94{bottom:566.040600px;}
.y62{bottom:567.659773px;}
.y2b{bottom:577.739769px;}
.yb6{bottom:580.079768px;}
.y92{bottom:582.600600px;}
.y61{bottom:590.699764px;}
.y90{bottom:598.980600px;}
.y2a{bottom:600.779760px;}
.yb5{bottom:602.939759px;}
.y60{bottom:613.739755px;}
.y8e{bottom:615.540600px;}
.yb3{bottom:622.920600px;}
.y29{bottom:623.819750px;}
.y8c{bottom:631.920600px;}
.y5f{bottom:636.779745px;}
.yb1{bottom:642.720600px;}
.y28{bottom:646.859741px;}
.y8a{bottom:648.480600px;}
.y5e{bottom:659.819736px;}
.y88{bottom:664.860600px;}
.y27{bottom:669.899732px;}
.y86{bottom:681.420600px;}
.y5d{bottom:682.679727px;}
.y25{bottom:689.880600px;}
.y84{bottom:697.800600px;}
.y5c{bottom:705.719718px;}
.y82{bottom:714.360600px;}
.y22{bottom:717.960600px;}
.y24{bottom:721.379711px;}
.y5b{bottom:728.759708px;}
.y80{bottom:730.740600px;}
.y7e{bottom:747.300600px;}
.y5a{bottom:751.799699px;}
.y20{bottom:754.140600px;}
.y1f{bottom:758.999696px;}
.y7c{bottom:763.680600px;}
.y59{bottom:774.839690px;}
.y7a{bottom:780.240600px;}
.y79{bottom:797.700600px;}
.y58{bottom:797.879681px;}
.y1d{bottom:798.600600px;}
.y1b{bottom:799.860600px;}
.y77{bottom:815.340600px;}
.y1a{bottom:819.119672px;}
.y57{bottom:820.739672px;}
.y56{bottom:843.779662px;}
.y18{bottom:850.080600px;}
.y55{bottom:866.819653px;}
.y17{bottom:872.759651px;}
.y54{bottom:889.859644px;}
.y14{bottom:895.440600px;}
.y16{bottom:905.519638px;}
.y53{bottom:912.899635px;}
.y12{bottom:915.780600px;}
.y52{bottom:935.939626px;}
.y11{bottom:949.259620px;}
.y51{bottom:958.799616px;}
.y50{bottom:981.839607px;}
.y10{bottom:990.119604px;}
.y4f{bottom:1004.879598px;}
.yf{bottom:1013.519595px;}
.y4e{bottom:1027.919589px;}
.ye{bottom:1029.899588px;}
.yd{bottom:1030.259588px;}
.y4d{bottom:1050.959580px;}
.y47{bottom:1073.280600px;}
.y4c{bottom:1073.999570px;}
.y46{bottom:1082.279567px;}
.y4b{bottom:1096.859561px;}
.y76{bottom:1100.639560px;}
.y45{bottom:1103.519559px;}
.y4a{bottom:1119.899552px;}
.y44{bottom:1124.939550px;}
.yc{bottom:1127.099549px;}
.yb{bottom:1127.459549px;}
.y9{bottom:1134.300600px;}
.y49{bottom:1142.939543px;}
.y42{bottom:1145.280600px;}
.y41{bottom:1149.059540px;}
.y1{bottom:1192.799523px;}
.y7{bottom:1195.860600px;}
.h24{height:2.880000px;}
.hb{height:8.169958px;}
.hd{height:13.500000px;}
.h16{height:15.120000px;}
.h27{height:15.300000px;}
.h28{height:15.480000px;}
.h1e{height:15.859330px;}
.h18{height:16.380000px;}
.h1c{height:17.100000px;}
.hf{height:20.160000px;}
.h13{height:20.340000px;}
.h2{height:20.520000px;}
.h7{height:20.700000px;}
.h4{height:20.880000px;}
.h22{height:21.780000px;}
.h1f{height:25.913662px;}
.h11{height:25.951630px;}
.he{height:32.199245px;}
.h26{height:32.765612px;}
.h1b{height:33.588971px;}
.h12{height:36.886626px;}
.h29{height:38.008110px;}
.h15{height:40.034515px;}
.h17{height:40.842757px;}
.h23{height:41.290999px;}
.h20{height:43.185920px;}
.h1d{height:45.199318px;}
.h8{height:47.988262px;}
.h10{height:48.058575px;}
.h14{height:48.234356px;}
.h19{height:49.148418px;}
.h25{height:49.907793px;}
.h1a{height:50.132792px;}
.ha{height:54.457009px;}
.h21{height:55.054665px;}
.h5{height:56.228532px;}
.hc{height:63.917904px;}
.h1{height:70.664034px;}
.h3{height:72.562471px;}
.h9{height:78.468719px;}
.h6{height:84.898091px;}
.h0{height:1263.000000px;}
.w40{width:2.340000px;}
.w21{width:3.240000px;}
.w22{width:3.420000px;}
.wd{width:4.500000px;}
.w1f{width:5.040000px;}
.w27{width:5.760000px;}
.w1{width:6.480000px;}
.w2a{width:6.840000px;}
.w25{width:7.200000px;}
.w2d{width:7.380000px;}
.w1e{width:7.560000px;}
.wf{width:7.740000px;}
.w38{width:8.100000px;}
.w7{width:8.280000px;}
.w10{width:8.820000px;}
.w14{width:9.900000px;}
.w13{width:10.620000px;}
.w5{width:11.160000px;}
.w6{width:11.340000px;}
.wb{width:12.240000px;}
.w9{width:12.420000px;}
.w2c{width:12.600000px;}
.w24{width:12.960000px;}
.w31{width:13.500000px;}
.w36{width:14.040000px;}
.w35{width:15.660000px;}
.w3{width:16.020000px;}
.w28{width:18.000000px;}
.w3b{width:18.360000px;}
.w33{width:18.720000px;}
.w23{width:18.900000px;}
.w3d{width:19.080000px;}
.w15{width:22.500000px;}
.w2f{width:23.220000px;}
.w2e{width:23.940000px;}
.w32{width:24.120000px;}
.w3a{width:24.300000px;}
.w3c{width:25.380000px;}
.w29{width:25.560000px;}
.w26{width:25.920000px;}
.w37{width:27.540000px;}
.w3e{width:27.720000px;}
.w4{width:33.480000px;}
.w34{width:34.200000px;}
.w1c{width:39.240000px;}
.w1d{width:39.600000px;}
.w3f{width:41.760000px;}
.w41{width:42.300000px;}
.w1b{width:45.540000px;}
.w1a{width:49.140000px;}
.w16{width:50.760000px;}
.w39{width:51.120000px;}
.w20{width:56.160000px;}
.w17{width:60.120000px;}
.w11{width:65.700000px;}
.w30{width:66.780000px;}
.wc{width:77.940000px;}
.w2b{width:84.240000px;}
.w42{width:87.300000px;}
.w19{width:100.980000px;}
.w18{width:111.060000px;}
.w2{width:119.700000px;}
.w8{width:164.340000px;}
.w43{width:189.360000px;}
.we{width:360.180000px;}
.wa{width:519.120000px;}
.w12{width:675.720000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:107.999957px;}
.x1e{left:109.259956px;}
.x54{left:114.840000px;}
.x29{left:116.459953px;}
.x5{left:120.240000px;}
.x2{left:128.699878px;}
.x31{left:130.500000px;}
.x5b{left:142.200000px;}
.x45{left:147.600000px;}
.x6c{left:149.760000px;}
.x3{left:155.700000px;}
.x65{left:157.140000px;}
.x5e{left:159.120000px;}
.x4{left:171.899931px;}
.x28{left:174.599930px;}
.x46{left:176.760000px;}
.x47{left:180.000000px;}
.x48{left:183.420000px;}
.xa{left:185.219926px;}
.x22{left:187.200000px;}
.x23{left:191.700000px;}
.x49{left:202.320000px;}
.x55{left:204.120000px;}
.x6{left:239.940000px;}
.x32{left:241.380000px;}
.x74{left:242.640000px;}
.xb{left:259.740316px;}
.x1f{left:273.599891px;}
.x20{left:278.460000px;}
.x33{left:292.140000px;}
.x39{left:318.600000px;}
.x5c{left:336.240000px;}
.x4a{left:339.660000px;}
.x61{left:340.920000px;}
.x2b{left:342.539863px;}
.x4b{left:346.860000px;}
.x5d{left:350.280000px;}
.x34{left:352.440000px;}
.x3a{left:367.740000px;}
.x3b{left:398.160000px;}
.x4c{left:407.880000px;}
.x56{left:408.960000px;}
.x6f{left:411.480000px;}
.x35{left:412.560000px;}
.x62{left:423.180000px;}
.xc{left:427.680106px;}
.x73{left:429.660000px;}
.x63{left:430.740000px;}
.xd{left:432.180102px;}
.x4d{left:433.800000px;}
.x2d{left:435.959826px;}
.x3c{left:443.700000px;}
.x25{left:448.920000px;}
.x2a{left:462.600512px;}
.x3d{left:472.500000px;}
.x36{left:485.100000px;}
.x4e{left:494.100000px;}
.x66{left:495.180000px;}
.x6d{left:496.260000px;}
.x4f{left:499.860000px;}
.x64{left:501.120000px;}
.x72{left:502.560000px;}
.x26{left:504.359798px;}
.xe{left:516.060050px;}
.x3e{left:521.640000px;}
.xf{left:529.380042px;}
.x2f{left:536.939785px;}
.x10{left:542.700033px;}
.x24{left:551.880000px;}
.x3f{left:557.820000px;}
.x11{left:564.659960px;}
.x57{left:565.740000px;}
.x12{left:569.159957px;}
.x5f{left:575.280000px;}
.x6e{left:576.540000px;}
.x60{left:580.320000px;}
.x13{left:582.479948px;}
.x50{left:586.440000px;}
.x67{left:587.520000px;}
.x2e{left:589.679764px;}
.x14{left:595.619941px;}
.x40{left:597.060000px;}
.x15{left:608.939932px;}
.x16{left:613.439928px;}
.x21{left:628.380000px;}
.x17{left:631.079858px;}
.x41{left:632.340000px;}
.x30{left:633.779746px;}
.x18{left:635.399856px;}
.x19{left:648.719847px;}
.x37{left:651.420000px;}
.x1a{left:653.039845px;}
.x58{left:654.120000px;}
.x1b{left:657.539841px;}
.x70{left:659.520000px;}
.x51{left:660.780000px;}
.x1c{left:666.359733px;}
.x42{left:681.480000px;}
.x7{left:697.320000px;}
.x43{left:718.380000px;}
.x68{left:724.140000px;}
.x52{left:725.220000px;}
.x69{left:726.300000px;}
.x59{left:728.640000px;}
.x8{left:730.800000px;}
.x71{left:735.480000px;}
.x6b{left:739.800000px;}
.x9{left:741.960000px;}
.x5a{left:747.360000px;}
.x6a{left:749.520000px;}
.x53{left:750.780000px;}
.x38{left:752.400000px;}
.x44{left:757.620000px;}
.x2c{left:779.580000px;}
.x27{left:781.559687px;}
.x1d{left:783.539686px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.559999pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.009381pt;}
.ls0{letter-spacing:0.018878pt;}
.ls2{letter-spacing:0.064960pt;}
.ls4{letter-spacing:0.866346pt;}
.ws2{word-spacing:-19.918072pt;}
.ws0{word-spacing:-16.018872pt;}
.ws1{word-spacing:-15.999994pt;}
.ws3{word-spacing:-13.492475pt;}
.ws6{word-spacing:-12.191995pt;}
.ws5{word-spacing:-11.567995pt;}
.ws4{word-spacing:0.000000pt;}
._3{margin-left:-596.162746pt;}
._2{margin-left:-539.714020pt;}
._b{margin-left:-417.345321pt;}
._6{margin-left:-297.619225pt;}
._8{margin-left:-77.664056pt;}
._9{margin-left:-61.663779pt;}
._7{margin-left:-46.719326pt;}
._a{margin-left:-30.719311pt;}
._1{margin-left:-22.719255pt;}
._5{margin-left:-14.719290pt;}
._0{margin-left:-1.055625pt;}
._4{width:1.308994pt;}
._14{width:2.202238pt;}
._f{width:3.102560pt;}
._10{width:4.249738pt;}
._13{width:5.301089pt;}
._d{width:6.767881pt;}
._e{width:7.714045pt;}
._11{width:8.850171pt;}
._12{width:9.857624pt;}
._21{width:12.981509pt;}
._25{width:14.263966pt;}
._c{width:15.441700pt;}
._26{width:16.977242pt;}
._16{width:18.209394pt;}
._1e{width:19.134559pt;}
._2b{width:20.034603pt;}
._1d{width:20.944684pt;}
._18{width:22.224874pt;}
._15{width:23.138620pt;}
._1b{width:24.670290pt;}
._1c{width:25.801637pt;}
._2d{width:27.317308pt;}
._17{width:28.573346pt;}
._2c{width:29.846552pt;}
._27{width:31.494437pt;}
._1a{width:33.964091pt;}
._19{width:35.147757pt;}
._22{width:36.642706pt;}
._23{width:37.627646pt;}
._20{width:40.023336pt;}
._2e{width:40.982404pt;}
._24{width:42.136486pt;}
._28{width:43.661442pt;}
._1f{width:46.268720pt;}
._2a{width:48.473719pt;}
._29{width:136.673616pt;}
.fsa{font-size:8.319997pt;}
.fs3{font-size:10.879996pt;}
.fs9{font-size:21.119992pt;}
.fsc{font-size:31.999987pt;}
.fs6{font-size:34.559986pt;}
.fsd{font-size:37.119985pt;}
.fs5{font-size:42.879983pt;}
.fs8{font-size:47.999981pt;}
.fs7{font-size:53.119979pt;}
.fs0{font-size:63.999974pt;}
.fsb{font-size:66.559973pt;}
.fs1{font-size:74.879970pt;}
.fs4{font-size:85.119966pt;}
.fs2{font-size:95.999962pt;}
.y48{bottom:-13.920909pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:2.559040pt;}
.y78{bottom:2.719176pt;}
.y1c{bottom:2.719181pt;}
.y7b{bottom:2.719188pt;}
.y7d{bottom:2.719194pt;}
.y7f{bottom:2.719200pt;}
.y81{bottom:2.719206pt;}
.y83{bottom:2.719212pt;}
.y85{bottom:2.719217pt;}
.y26{bottom:2.719220pt;}
.y87{bottom:2.719223pt;}
.y89{bottom:2.719229pt;}
.y8b{bottom:2.719235pt;}
.yb2{bottom:2.719237pt;}
.y8d{bottom:2.719241pt;}
.yb4{bottom:2.719244pt;}
.y8f{bottom:2.719247pt;}
.y91{bottom:2.719253pt;}
.y93{bottom:2.719258pt;}
.y95{bottom:2.719264pt;}
.y97{bottom:2.719270pt;}
.y99{bottom:2.719276pt;}
.y9b{bottom:2.719282pt;}
.y9d{bottom:2.719288pt;}
.y9f{bottom:2.719294pt;}
.ya1{bottom:2.719299pt;}
.y13{bottom:2.879140pt;}
.y23{bottom:3.039210pt;}
.y43{bottom:3.359058pt;}
.ya{bottom:3.679062pt;}
.y1e{bottom:3.839181pt;}
.y4{bottom:3.840025pt;}
.y15{bottom:4.319147pt;}
.y19{bottom:4.319163pt;}
.y21{bottom:4.319197pt;}
.y6{bottom:52.106912pt;}
.y3{bottom:66.666880pt;}
.y5{bottom:70.186905pt;}
.y2{bottom:70.506638pt;}
.y40{bottom:109.546623pt;}
.yca{bottom:115.626620pt;}
.y75{bottom:116.106620pt;}
.yb0{bottom:116.266620pt;}
.y3f{bottom:130.026615pt;}
.yc9{bottom:136.106612pt;}
.y74{bottom:136.426612pt;}
.yaf{bottom:136.746612pt;}
.y3e{bottom:150.506606pt;}
.yc8{bottom:156.586604pt;}
.y73{bottom:156.906604pt;}
.yae{bottom:157.226604pt;}
.y3d{bottom:170.826598pt;}
.yc7{bottom:176.906596pt;}
.y72{bottom:177.386596pt;}
.yad{bottom:177.706596pt;}
.y3c{bottom:191.306590pt;}
.yc6{bottom:195.146589pt;}
.y71{bottom:197.866588pt;}
.yac{bottom:198.186587pt;}
.y3b{bottom:211.786582pt;}
.yc5{bottom:213.386581pt;}
.y70{bottom:218.346579pt;}
.yab{bottom:218.506579pt;}
.y3a{bottom:232.266574pt;}
.yc4{bottom:233.706573pt;}
.y6f{bottom:238.826571pt;}
.yaa{bottom:238.986571pt;}
.y39{bottom:252.746566pt;}
.yc3{bottom:254.186565pt;}
.y6e{bottom:259.146563pt;}
.ya9{bottom:259.466563pt;}
.y38{bottom:273.066557pt;}
.yc2{bottom:274.666557pt;}
.y6d{bottom:279.626555pt;}
.ya8{bottom:279.946555pt;}
.y37{bottom:293.546549pt;}
.yc1{bottom:295.146549pt;}
.y6c{bottom:300.106547pt;}
.ya7{bottom:300.426546pt;}
.y36{bottom:314.026541pt;}
.yc0{bottom:315.626540pt;}
.y6b{bottom:320.586538pt;}
.ya6{bottom:320.906538pt;}
.y35{bottom:334.506533pt;}
.ybf{bottom:336.106532pt;}
.y6a{bottom:341.066530pt;}
.ya5{bottom:341.226530pt;}
.ybe{bottom:354.186525pt;}
.y34{bottom:354.986525pt;}
.y69{bottom:361.546522pt;}
.ya4{bottom:361.706522pt;}
.ybd{bottom:372.426518pt;}
.y33{bottom:375.466516pt;}
.y68{bottom:381.866514pt;}
.ya3{bottom:382.186514pt;}
.ybc{bottom:392.906510pt;}
.y32{bottom:395.786508pt;}
.y67{bottom:402.346506pt;}
.ya2{bottom:402.666506pt;}
.ybb{bottom:413.226501pt;}
.ya0{bottom:415.467200pt;}
.y31{bottom:416.266500pt;}
.y66{bottom:422.826498pt;}
.y9e{bottom:430.027200pt;}
.y30{bottom:430.666494pt;}
.yba{bottom:433.706493pt;}
.y2f{bottom:434.026493pt;}
.y65{bottom:443.306489pt;}
.y9c{bottom:444.747200pt;}
.y2e{bottom:452.266486pt;}
.yb9{bottom:454.186485pt;}
.y9a{bottom:459.307200pt;}
.y64{bottom:463.786481pt;}
.y2d{bottom:472.746478pt;}
.y98{bottom:473.867200pt;}
.yb8{bottom:474.666477pt;}
.y63{bottom:484.266473pt;}
.y96{bottom:488.587200pt;}
.y2c{bottom:493.226469pt;}
.yb7{bottom:495.146469pt;}
.y94{bottom:503.147200pt;}
.y62{bottom:504.586465pt;}
.y2b{bottom:513.546461pt;}
.yb6{bottom:515.626460pt;}
.y92{bottom:517.867200pt;}
.y61{bottom:525.066457pt;}
.y90{bottom:532.427200pt;}
.y2a{bottom:534.026453pt;}
.yb5{bottom:535.946452pt;}
.y60{bottom:545.546448pt;}
.y8e{bottom:547.147200pt;}
.yb3{bottom:553.707200pt;}
.y29{bottom:554.506445pt;}
.y8c{bottom:561.707200pt;}
.y5f{bottom:566.026440pt;}
.yb1{bottom:571.307200pt;}
.y28{bottom:574.986437pt;}
.y8a{bottom:576.427200pt;}
.y5e{bottom:586.506432pt;}
.y88{bottom:590.987200pt;}
.y27{bottom:595.466428pt;}
.y86{bottom:605.707200pt;}
.y5d{bottom:606.826424pt;}
.y25{bottom:613.227200pt;}
.y84{bottom:620.267200pt;}
.y5c{bottom:627.306416pt;}
.y82{bottom:634.987200pt;}
.y22{bottom:638.187200pt;}
.y24{bottom:641.226410pt;}
.y5b{bottom:647.786408pt;}
.y80{bottom:649.547200pt;}
.y7e{bottom:664.267200pt;}
.y5a{bottom:668.266399pt;}
.y20{bottom:670.347200pt;}
.y1f{bottom:674.666397pt;}
.y7c{bottom:678.827200pt;}
.y59{bottom:688.746391pt;}
.y7a{bottom:693.547200pt;}
.y79{bottom:709.067200pt;}
.y58{bottom:709.226383pt;}
.y1d{bottom:709.867200pt;}
.y1b{bottom:710.987200pt;}
.y77{bottom:724.747200pt;}
.y1a{bottom:728.106375pt;}
.y57{bottom:729.546375pt;}
.y56{bottom:750.026367pt;}
.y18{bottom:755.627200pt;}
.y55{bottom:770.506358pt;}
.y17{bottom:775.786356pt;}
.y54{bottom:790.986350pt;}
.y14{bottom:795.947200pt;}
.y16{bottom:804.906345pt;}
.y53{bottom:811.466342pt;}
.y12{bottom:814.027200pt;}
.y52{bottom:831.946334pt;}
.y11{bottom:843.786329pt;}
.y51{bottom:852.266326pt;}
.y50{bottom:872.746318pt;}
.y10{bottom:880.106315pt;}
.y4f{bottom:893.226309pt;}
.yf{bottom:900.906306pt;}
.y4e{bottom:913.706301pt;}
.ye{bottom:915.466300pt;}
.yd{bottom:915.786300pt;}
.y4d{bottom:934.186293pt;}
.y47{bottom:954.027200pt;}
.y4c{bottom:954.666285pt;}
.y46{bottom:962.026282pt;}
.y4b{bottom:974.986277pt;}
.y76{bottom:978.346275pt;}
.y45{bottom:980.906274pt;}
.y4a{bottom:995.466268pt;}
.y44{bottom:999.946267pt;}
.yc{bottom:1001.866266pt;}
.yb{bottom:1002.186266pt;}
.y9{bottom:1008.267200pt;}
.y49{bottom:1015.946260pt;}
.y42{bottom:1018.027200pt;}
.y41{bottom:1021.386258pt;}
.y1{bottom:1060.266243pt;}
.y7{bottom:1062.987200pt;}
.h24{height:2.560000pt;}
.hb{height:7.262185pt;}
.hd{height:12.000000pt;}
.h16{height:13.440000pt;}
.h27{height:13.600000pt;}
.h28{height:13.760000pt;}
.h1e{height:14.097182pt;}
.h18{height:14.560000pt;}
.h1c{height:15.200000pt;}
.hf{height:17.920000pt;}
.h13{height:18.080000pt;}
.h2{height:18.240000pt;}
.h7{height:18.400000pt;}
.h4{height:18.560000pt;}
.h22{height:19.360000pt;}
.h1f{height:23.034366pt;}
.h11{height:23.068116pt;}
.he{height:28.621551pt;}
.h26{height:29.124988pt;}
.h1b{height:29.856863pt;}
.h12{height:32.788112pt;}
.h29{height:33.784986pt;}
.h15{height:35.586236pt;}
.h17{height:36.304673pt;}
.h23{height:36.703110pt;}
.h20{height:38.387485pt;}
.h1d{height:40.177171pt;}
.h8{height:42.656233pt;}
.h10{height:42.718733pt;}
.h14{height:42.874983pt;}
.h19{height:43.687483pt;}
.h25{height:44.362482pt;}
.h1a{height:44.562482pt;}
.ha{height:48.406231pt;}
.h21{height:48.937480pt;}
.h5{height:49.980918pt;}
.hc{height:56.815915pt;}
.h1{height:62.812475pt;}
.h3{height:64.499974pt;}
.h9{height:69.749972pt;}
.h6{height:75.464970pt;}
.h0{height:1122.666667pt;}
.w40{width:2.080000pt;}
.w21{width:2.880000pt;}
.w22{width:3.040000pt;}
.wd{width:4.000000pt;}
.w1f{width:4.480000pt;}
.w27{width:5.120000pt;}
.w1{width:5.760000pt;}
.w2a{width:6.080000pt;}
.w25{width:6.400000pt;}
.w2d{width:6.560000pt;}
.w1e{width:6.720000pt;}
.wf{width:6.880000pt;}
.w38{width:7.200000pt;}
.w7{width:7.360000pt;}
.w10{width:7.840000pt;}
.w14{width:8.800000pt;}
.w13{width:9.440000pt;}
.w5{width:9.920000pt;}
.w6{width:10.080000pt;}
.wb{width:10.880000pt;}
.w9{width:11.040000pt;}
.w2c{width:11.200000pt;}
.w24{width:11.520000pt;}
.w31{width:12.000000pt;}
.w36{width:12.480000pt;}
.w35{width:13.920000pt;}
.w3{width:14.240000pt;}
.w28{width:16.000000pt;}
.w3b{width:16.320000pt;}
.w33{width:16.640000pt;}
.w23{width:16.800000pt;}
.w3d{width:16.960000pt;}
.w15{width:20.000000pt;}
.w2f{width:20.640000pt;}
.w2e{width:21.280000pt;}
.w32{width:21.440000pt;}
.w3a{width:21.600000pt;}
.w3c{width:22.560000pt;}
.w29{width:22.720000pt;}
.w26{width:23.040000pt;}
.w37{width:24.480000pt;}
.w3e{width:24.640000pt;}
.w4{width:29.760000pt;}
.w34{width:30.400000pt;}
.w1c{width:34.880000pt;}
.w1d{width:35.200000pt;}
.w3f{width:37.120000pt;}
.w41{width:37.600000pt;}
.w1b{width:40.480000pt;}
.w1a{width:43.680000pt;}
.w16{width:45.120000pt;}
.w39{width:45.440000pt;}
.w20{width:49.920000pt;}
.w17{width:53.440000pt;}
.w11{width:58.400000pt;}
.w30{width:59.360000pt;}
.wc{width:69.280000pt;}
.w2b{width:74.880000pt;}
.w42{width:77.600000pt;}
.w19{width:89.760000pt;}
.w18{width:98.720000pt;}
.w2{width:106.400000pt;}
.w8{width:146.080000pt;}
.w43{width:168.320000pt;}
.we{width:320.160000pt;}
.wa{width:461.440000pt;}
.w12{width:600.640000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:95.999962pt;}
.x1e{left:97.119961pt;}
.x54{left:102.080000pt;}
.x29{left:103.519959pt;}
.x5{left:106.880000pt;}
.x2{left:114.399892pt;}
.x31{left:116.000000pt;}
.x5b{left:126.400000pt;}
.x45{left:131.200000pt;}
.x6c{left:133.120000pt;}
.x3{left:138.400000pt;}
.x65{left:139.680000pt;}
.x5e{left:141.440000pt;}
.x4{left:152.799939pt;}
.x28{left:155.199938pt;}
.x46{left:157.120000pt;}
.x47{left:160.000000pt;}
.x48{left:163.040000pt;}
.xa{left:164.639934pt;}
.x22{left:166.400000pt;}
.x23{left:170.400000pt;}
.x49{left:179.840000pt;}
.x55{left:181.440000pt;}
.x6{left:213.280000pt;}
.x32{left:214.560000pt;}
.x74{left:215.680000pt;}
.xb{left:230.880281pt;}
.x1f{left:243.199903pt;}
.x20{left:247.520000pt;}
.x33{left:259.680000pt;}
.x39{left:283.200000pt;}
.x5c{left:298.880000pt;}
.x4a{left:301.920000pt;}
.x61{left:303.040000pt;}
.x2b{left:304.479878pt;}
.x4b{left:308.320000pt;}
.x5d{left:311.360000pt;}
.x34{left:313.280000pt;}
.x3a{left:326.880000pt;}
.x3b{left:353.920000pt;}
.x4c{left:362.560000pt;}
.x56{left:363.520000pt;}
.x6f{left:365.760000pt;}
.x35{left:366.720000pt;}
.x62{left:376.160000pt;}
.xc{left:380.160094pt;}
.x73{left:381.920000pt;}
.x63{left:382.880000pt;}
.xd{left:384.160091pt;}
.x4d{left:385.600000pt;}
.x2d{left:387.519845pt;}
.x3c{left:394.400000pt;}
.x25{left:399.040000pt;}
.x2a{left:411.200455pt;}
.x3d{left:420.000000pt;}
.x36{left:431.200000pt;}
.x4e{left:439.200000pt;}
.x66{left:440.160000pt;}
.x6d{left:441.120000pt;}
.x4f{left:444.320000pt;}
.x64{left:445.440000pt;}
.x72{left:446.720000pt;}
.x26{left:448.319821pt;}
.xe{left:458.720045pt;}
.x3e{left:463.680000pt;}
.xf{left:470.560037pt;}
.x2f{left:477.279809pt;}
.x10{left:482.400029pt;}
.x24{left:490.560000pt;}
.x3f{left:495.840000pt;}
.x11{left:501.919965pt;}
.x57{left:502.880000pt;}
.x12{left:505.919962pt;}
.x5f{left:511.360000pt;}
.x6e{left:512.480000pt;}
.x60{left:515.840000pt;}
.x13{left:517.759954pt;}
.x50{left:521.280000pt;}
.x67{left:522.240000pt;}
.x2e{left:524.159790pt;}
.x14{left:529.439947pt;}
.x40{left:530.720000pt;}
.x15{left:541.279939pt;}
.x16{left:545.279936pt;}
.x21{left:558.560000pt;}
.x17{left:560.959873pt;}
.x41{left:562.080000pt;}
.x30{left:563.359775pt;}
.x18{left:564.799872pt;}
.x19{left:576.639864pt;}
.x37{left:579.040000pt;}
.x1a{left:580.479862pt;}
.x58{left:581.440000pt;}
.x1b{left:584.479859pt;}
.x70{left:586.240000pt;}
.x51{left:587.360000pt;}
.x1c{left:592.319763pt;}
.x42{left:605.760000pt;}
.x7{left:619.840000pt;}
.x43{left:638.560000pt;}
.x68{left:643.680000pt;}
.x52{left:644.640000pt;}
.x69{left:645.600000pt;}
.x59{left:647.680000pt;}
.x8{left:649.600000pt;}
.x71{left:653.760000pt;}
.x6b{left:657.600000pt;}
.x9{left:659.520000pt;}
.x5a{left:664.320000pt;}
.x6a{left:666.240000pt;}
.x53{left:667.360000pt;}
.x38{left:668.800000pt;}
.x44{left:673.440000pt;}
.x2c{left:692.960000pt;}
.x27{left:694.719722pt;}
.x1d{left:696.479721pt;}
}




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