
    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_89158a8d955296b4d8bd3dc3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.972168;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_0e5d7c8c49222f40e69a1cc2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_4e2aaa0bc9321eb945a11c67.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893066;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_9e86eb39406bf857491f5096.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.035156;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_db975debc4f31e60fb0e9b01.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.384000;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_281d4c2efbb64cc7dfed34d6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.368000;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_7301e748903f9f0c61be51e3.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.374000;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_cb16f25b8cefd2594bd09434.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.717773;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_e0568df8aca3af5629187555.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.095215;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_c7ba7670960c36fab0a068f0.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.099609;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_b62788bbf41d87a1e9e18681.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;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(0.252676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252676,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255709,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.257591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257591,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-69.119937px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:42.790351px;}
.ls3{letter-spacing:49.327094px;}
.ls4{letter-spacing:49.327125px;}
.ls2{letter-spacing:1194.835770px;}
.ls0{letter-spacing:1198.652164px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(128,0,0),0 0.015em rgb(128,0,0),0.015em 0 rgb(128,0,0),0 -0.015em  rgb(128,0,0);}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(255,0,0),0 0.015em rgb(255,0,0),0.015em 0 rgb(255,0,0),0 -0.015em  rgb(255,0,0);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(128,0,0);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(255,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-15.565086px;}
.ws1{word-spacing:-15.446864px;}
.ws5{word-spacing:-14.015925px;}
.ws4{word-spacing:-12.665025px;}
.ws2{word-spacing:-10.754859px;}
.ws3{word-spacing:0.000000px;}
._3{margin-left:-9.878719px;}
._24{margin-left:-3.265894px;}
._0{margin-left:-1.242855px;}
._1{width:1.205201px;}
._4{width:2.920709px;}
._5{width:4.803712px;}
._1a{width:6.506962px;}
._6{width:7.861786px;}
._7{width:9.067559px;}
._26{width:10.248398px;}
._15{width:11.751504px;}
._16{width:12.826657px;}
._11{width:14.201318px;}
._38{width:16.644576px;}
._14{width:17.700716px;}
._17{width:19.647514px;}
._18{width:21.187295px;}
._19{width:22.392642px;}
._9{width:23.677359px;}
._8{width:24.761487px;}
._a{width:26.504611px;}
._c{width:27.525626px;}
._b{width:28.834236px;}
._2b{width:30.815395px;}
._27{width:31.939557px;}
._28{width:33.301307px;}
._e{width:34.494110px;}
._d{width:35.631099px;}
._1d{width:36.995896px;}
._1e{width:38.277458px;}
._21{width:39.336587px;}
._3c{width:41.447803px;}
._3b{width:42.505641px;}
._22{width:44.337724px;}
._f{width:46.037340px;}
._36{width:48.179265px;}
._35{width:49.316855px;}
._25{width:51.485829px;}
._13{width:54.668142px;}
._12{width:55.669466px;}
._1c{width:56.840201px;}
._37{width:58.622946px;}
._2d{width:60.411313px;}
._2c{width:61.757761px;}
._32{width:63.879135px;}
._10{width:65.780286px;}
._31{width:76.242168px;}
._30{width:77.566216px;}
._1b{width:85.978061px;}
._3d{width:87.584936px;}
._29{width:90.229517px;}
._2a{width:91.637200px;}
._1f{width:96.814837px;}
._20{width:97.910918px;}
._2e{width:106.817524px;}
._2f{width:107.937185px;}
._3a{width:120.103973px;}
._39{width:121.284685px;}
._3e{width:144.391927px;}
._34{width:148.224964px;}
._33{width:150.216321px;}
._2{width:549.540284px;}
._23{width:707.291683px;}
.fc7{color:rgb(128,0,0);}
.fc5{color:rgb(196,188,150);}
.fc4{color:rgb(255,0,0);}
.fc6{color:transparent;}
.fc3{color:rgb(118,113,113);}
.fc2{color:rgb(127,127,127);}
.fc1{color:rgb(166,166,166);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:39.251312px;}
.fs1{font-size:45.256050px;}
.fs8{font-size:45.342719px;}
.fs2{font-size:50.660100px;}
.fsc{font-size:50.755829px;}
.fs3{font-size:56.063700px;}
.fs9{font-size:56.170413px;}
.fs0{font-size:62.142750px;}
.fs5{font-size:62.260346px;}
.fs7{font-size:67.674930px;}
.fsb{font-size:84.433046px;}
.fs4{font-size:120.908250px;}
.fs6{font-size:275.590341px;}
.y80{bottom:-8.103536px;}
.y75{bottom:-4.858539px;}
.y0{bottom:0.000000px;}
.y7d{bottom:2.521461px;}
.y77{bottom:2.878207px;}
.y5d{bottom:3.245263px;}
.y79{bottom:3.599789px;}
.y7b{bottom:4.134478px;}
.y58{bottom:4.319961px;}
.y84{bottom:6.839950px;}
.y83{bottom:30.420044px;}
.y3{bottom:31.500000px;}
.y82{bottom:47.340019px;}
.y2{bottom:48.240006px;}
.yad{bottom:68.940033px;}
.y7f{bottom:74.168562px;}
.yd3{bottom:76.679970px;}
.y7e{bottom:79.208561px;}
.yfa{bottom:82.980011px;}
.yac{bottom:86.940033px;}
.y7c{bottom:89.824551px;}
.yd2{bottom:94.320030px;}
.yf9{bottom:100.799973px;}
.yab{bottom:104.940033px;}
.y134{bottom:106.919975px;}
.yd1{bottom:112.320030px;}
.yf8{bottom:118.799973px;}
.y56{bottom:121.334638px;}
.y133{bottom:121.679970px;}
.y34{bottom:122.412871px;}
.yaa{bottom:122.759994px;}
.yd0{bottom:130.320030px;}
.y132{bottom:136.259994px;}
.yf7{bottom:136.620002px;}
.y55{bottom:139.332646px;}
.y33{bottom:140.054715px;}
.ya9{bottom:140.580025px;}
.ycf{bottom:148.139992px;}
.y131{bottom:150.840019px;}
.yf6{bottom:154.620002px;}
.y54{bottom:157.155030px;}
.y32{bottom:158.052815px;}
.ya8{bottom:158.580025px;}
.y130{bottom:165.419975px;}
.yce{bottom:165.960022px;}
.yf5{bottom:172.440033px;}
.y53{bottom:174.967858px;}
.y31{bottom:175.875106px;}
.ya7{bottom:176.399986px;}
.y12f{bottom:180.179970px;}
.ycd{bottom:183.960022px;}
.yf4{bottom:190.259994px;}
.y52{bottom:192.790149px;}
.y30{bottom:193.687934px;}
.ya6{bottom:194.399986px;}
.ya5{bottom:194.409910px;}
.y12e{bottom:194.759994px;}
.ycc{bottom:201.779983px;}
.yf3{bottom:208.259994px;}
.y12d{bottom:209.519989px;}
.y51{bottom:210.788249px;}
.y2f{bottom:211.679970px;}
.ya4{bottom:212.232294px;}
.ycb{bottom:219.600013px;}
.y12c{bottom:223.919975px;}
.yf2{bottom:226.080025px;}
.y50{bottom:228.610540px;}
.y2e{bottom:229.500000px;}
.ya3{bottom:230.049854px;}
.yca{bottom:237.600013px;}
.y12b{bottom:238.679970px;}
.yf1{bottom:243.899986px;}
.y4f{bottom:246.432924px;}
.y2d{bottom:247.500000px;}
.ya2{bottom:248.052685px;}
.y12a{bottom:253.259994px;}
.yc9{bottom:255.419975px;}
.yf0{bottom:261.899986px;}
.y4e{bottom:264.431024px;}
.y2c{bottom:265.320030px;}
.ya1{bottom:265.865514px;}
.y129{bottom:267.840019px;}
.yc8{bottom:273.419975px;}
.yef{bottom:279.899986px;}
.y4d{bottom:282.429032px;}
.y128{bottom:282.600013px;}
.y2b{bottom:283.139992px;}
.ya0{bottom:283.687805px;}
.yc7{bottom:291.240006px;}
.y127{bottom:297.000000px;}
.yee{bottom:297.539977px;}
.y4c{bottom:300.066144px;}
.y2a{bottom:301.139992px;}
.y9f{bottom:301.685905px;}
.yc6{bottom:309.059967px;}
.y126{bottom:311.759994px;}
.yed{bottom:315.539977px;}
.y4b{bottom:318.073707px;}
.y29{bottom:318.960022px;}
.y9e{bottom:319.508289px;}
.yc5{bottom:327.059967px;}
.yec{bottom:333.539977px;}
.y4a{bottom:336.071807px;}
.y28{bottom:336.779983px;}
.y9d{bottom:337.330580px;}
.yc4{bottom:344.879998px;}
.yeb{bottom:351.360008px;}
.y49{bottom:354.430895px;}
.y27{bottom:354.779983px;}
.y9c{bottom:355.328680px;}
.y125{bottom:362.519989px;}
.yc3{bottom:362.700027px;}
.yea{bottom:369.179970px;}
.y48{bottom:371.706926px;}
.y26{bottom:372.779983px;}
.y9b{bottom:373.150971px;}
.y124{bottom:378.899986px;}
.y123{bottom:378.912865px;}
.yc2{bottom:380.700027px;}
.ye9{bottom:387.179970px;}
.y47{bottom:389.709758px;}
.y25{bottom:390.419975px;}
.y9a{bottom:390.963799px;}
.y122{bottom:396.360008px;}
.yc1{bottom:398.519989px;}
.ye8{bottom:405.000000px;}
.y46{bottom:407.527410px;}
.y24{bottom:408.419975px;}
.y99{bottom:408.971363px;}
.y121{bottom:411.480011px;}
.yc0{bottom:416.340019px;}
.ye7{bottom:422.820030px;}
.y45{bottom:425.349701px;}
.y23{bottom:426.419975px;}
.y98{bottom:426.784237px;}
.y120{bottom:429.480011px;}
.ybf{bottom:434.340019px;}
.ye6{bottom:440.639992px;}
.y44{bottom:443.347802px;}
.y22{bottom:444.059967px;}
.y97{bottom:444.791800px;}
.y11f{bottom:447.299973px;}
.y11e{bottom:447.304615px;}
.ybe{bottom:452.159981px;}
.ye5{bottom:458.639992px;}
.y43{bottom:461.170093px;}
.y21{bottom:462.059967px;}
.y96{bottom:462.614138px;}
.y11d{bottom:465.312178px;}
.ybd{bottom:470.159981px;}
.ye4{bottom:476.639992px;}
.y42{bottom:479.163461px;}
.y20{bottom:480.059967px;}
.y95{bottom:480.426966px;}
.y11c{bottom:482.949244px;}
.ybc{bottom:487.980011px;}
.ye3{bottom:494.279983px;}
.y41{bottom:496.985752px;}
.y1f{bottom:497.879998px;}
.y94{bottom:498.429798px;}
.y11b{bottom:500.947344px;}
.ybb{bottom:505.799973px;}
.ye2{bottom:512.279983px;}
.y57{bottom:512.460022px;}
.y40{bottom:514.808090px;}
.y1e{bottom:515.700027px;}
.y93{bottom:516.247357px;}
.y11a{bottom:518.945444px;}
.yba{bottom:523.799973px;}
.ye1{bottom:530.279983px;}
.y3f{bottom:532.806190px;}
.y1d{bottom:533.700027px;}
.y92{bottom:534.069695px;}
.y119{bottom:536.767735px;}
.yb9{bottom:541.620002px;}
.ye0{bottom:547.919975px;}
.y3e{bottom:550.447987px;}
.y1c{bottom:551.519989px;}
.y91{bottom:552.067795px;}
.y118{bottom:554.590073px;}
.yb8{bottom:559.440033px;}
.ydf{bottom:565.919975px;}
.y3d{bottom:568.446087px;}
.y1b{bottom:569.519989px;}
.y90{bottom:570.070627px;}
.y117{bottom:572.588173px;}
.yb7{bottom:577.440033px;}
.yde{bottom:583.919975px;}
.y3c{bottom:586.448919px;}
.y1a{bottom:587.159981px;}
.y8f{bottom:587.712424px;}
.y74{bottom:590.402342px;}
.y116{bottom:590.410511px;}
.yb6{bottom:595.440033px;}
.ydd{bottom:601.740006px;}
.y3b{bottom:604.261747px;}
.y73{bottom:604.803276px;}
.y19{bottom:605.159981px;}
.y8e{bottom:605.705792px;}
.y115{bottom:608.223339px;}
.yb5{bottom:613.079990px;}
.ydc{bottom:619.560001px;}
.y3a{bottom:622.084085px;}
.y72{bottom:622.806107px;}
.y18{bottom:623.160015px;}
.y8d{bottom:623.703846px;}
.y114{bottom:626.226170px;}
.yb4{bottom:631.079990px;}
.y76{bottom:634.493075px;}
.ydb{bottom:637.560001px;}
.y39{bottom:640.082138px;}
.y71{bottom:640.623667px;}
.y17{bottom:640.800007px;}
.y8c{bottom:641.526184px;}
.y113{bottom:644.040012px;}
.yb3{bottom:649.079990px;}
.yda{bottom:655.379998px;}
.y38{bottom:657.904476px;}
.y70{bottom:658.446005px;}
.y16{bottom:658.800007px;}
.y8b{bottom:659.348521px;}
.y78{bottom:661.140972px;}
.y112{bottom:662.040012px;}
.yb2{bottom:666.720017px;}
.yd9{bottom:673.199993px;}
.y37{bottom:675.902576px;}
.y6f{bottom:676.448836px;}
.y15{bottom:676.800007px;}
.y8a{bottom:677.346575px;}
.y111{bottom:679.860008px;}
.yb1{bottom:684.720017px;}
.yd8{bottom:691.199993px;}
.y36{bottom:693.724914px;}
.y6e{bottom:694.266396px;}
.y89{bottom:695.168912px;}
.y14{bottom:695.699993px;}
.y110{bottom:697.680004px;}
.yb0{bottom:702.540012px;}
.yd7{bottom:709.019989px;}
.y35{bottom:711.547205px;}
.y6d{bottom:712.269227px;}
.y88{bottom:712.981741px;}
.y13{bottom:713.160015px;}
.y10f{bottom:715.680004px;}
.yd6{bottom:727.019989px;}
.y6c{bottom:730.083957px;}
.yaf{bottom:732.420010px;}
.y10e{bottom:733.500000px;}
.y14a{bottom:736.379998px;}
.y86{bottom:737.639992px;}
.y87{bottom:737.648098px;}
.yae{bottom:744.300007px;}
.y12{bottom:747.899986px;}
.y6b{bottom:747.906295px;}
.y85{bottom:749.525129px;}
.y10d{bottom:751.319995px;}
.y149{bottom:751.680004px;}
.yd5{bottom:756.720017px;}
.y6a{bottom:765.903421px;}
.yd4{bottom:768.600013px;}
.y10c{bottom:769.319995px;}
.y148{bottom:769.680004px;}
.y11{bottom:782.639992px;}
.y69{bottom:783.725759px;}
.y10b{bottom:787.139992px;}
.y147{bottom:787.319995px;}
.y10{bottom:800.100013px;}
.y68{bottom:801.548073px;}
.y10a{bottom:804.959988px;}
.y146{bottom:805.319995px;}
.y67{bottom:819.545222px;}
.y109{bottom:822.959988px;}
.y145{bottom:823.319995px;}
.y66{bottom:837.542348px;}
.y144{bottom:840.600013px;}
.y108{bottom:840.779983px;}
.y143{bottom:855.180004px;}
.y65{bottom:855.182266px;}
.y107{bottom:858.779983px;}
.yf{bottom:869.399987px;}
.y142{bottom:869.759994px;}
.y64{bottom:873.187000px;}
.y106{bottom:876.600013px;}
.y141{bottom:884.519989px;}
.ye{bottom:886.860008px;}
.y63{bottom:891.184126px;}
.y105{bottom:894.420010px;}
.y140{bottom:899.100013px;}
.yd{bottom:904.319996px;}
.y62{bottom:908.824068px;}
.y104{bottom:912.419992px;}
.y13f{bottom:915.120002px;}
.yc{bottom:921.599997px;}
.y61{bottom:926.821194px;}
.y13e{bottom:929.699993px;}
.y103{bottom:930.240006px;}
.yb{bottom:939.060001px;}
.y13d{bottom:944.460004px;}
.y60{bottom:944.825927px;}
.y102{bottom:948.060001px;}
.ya{bottom:956.159998px;}
.y13c{bottom:958.860008px;}
.y5f{bottom:962.640657px;}
.y101{bottom:966.060001px;}
.y9{bottom:973.620002px;}
.y5e{bottom:980.462971px;}
.y100{bottom:984.060001px;}
.y13b{bottom:988.199993px;}
.y8{bottom:991.080008px;}
.y5c{bottom:995.040046px;}
.y5b{bottom:998.285309px;}
.yff{bottom:1001.699993px;}
.y13a{bottom:1002.960004px;}
.y7{bottom:1008.360008px;}
.y5a{bottom:1016.282435px;}
.y139{bottom:1017.539996px;}
.yfe{bottom:1019.699993px;}
.y6{bottom:1025.819996px;}
.y7a{bottom:1029.605479px;}
.y138{bottom:1032.120002px;}
.y59{bottom:1034.279573px;}
.yfd{bottom:1037.699993px;}
.y5{bottom:1043.099997px;}
.y137{bottom:1046.700002px;}
.yfc{bottom:1055.340002px;}
.y136{bottom:1061.459997px;}
.y4{bottom:1066.860000px;}
.yfb{bottom:1073.340002px;}
.y135{bottom:1076.040003px;}
.y81{bottom:1105.379998px;}
.y1{bottom:1123.380001px;}
.h16{height:2.695174px;}
.hc{height:9.355706px;}
.h14{height:12.960698px;}
.he{height:14.764606px;}
.hb{height:16.378304px;}
.h10{height:18.354627px;}
.h12{height:18.719149px;}
.h15{height:33.942419px;}
.h19{height:38.316648px;}
.h1a{height:38.389052px;}
.h1d{height:39.146041px;}
.hf{height:39.232079px;}
.h1c{height:40.815907px;}
.h1b{height:42.403648px;}
.h8{height:43.472800px;}
.h1{height:47.001523px;}
.h7{height:47.090466px;}
.h11{height:48.600572px;}
.h2{height:50.388000px;}
.h5{height:51.065381px;}
.hd{height:51.185775px;}
.h6{height:51.369341px;}
.h9{height:53.639991px;}
.h3{height:55.762577px;}
.h17{height:61.808975px;}
.h13{height:61.925939px;}
.h18{height:83.979548px;}
.h4{height:123.810048px;}
.ha{height:208.442109px;}
.h0{height:1188.000000px;}
.we{width:2.697572px;}
.wb{width:2.884430px;}
.w16{width:4.676423px;}
.w13{width:5.581958px;}
.w5{width:5.756397px;}
.w8{width:7.377859px;}
.w3{width:7.922392px;}
.w9{width:8.998563px;}
.w2{width:10.079741px;}
.wc{width:13.679498px;}
.wa{width:22.318435px;}
.w6{width:34.023130px;}
.w14{width:34.198760px;}
.w7{width:45.364194px;}
.w1{width:45.900011px;}
.w15{width:55.077408px;}
.wf{width:63.539028px;}
.wd{width:67.860869px;}
.w4{width:75.065667px;}
.w12{width:98.999733px;}
.w11{width:104.758415px;}
.w10{width:177.297513px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:102.959997px;}
.x10{left:113.221256px;}
.x22{left:128.340002px;}
.x11{left:135.357615px;}
.x12{left:138.059983px;}
.x3{left:148.860008px;}
.x13{left:151.557405px;}
.x4{left:153.539996px;}
.xd{left:157.677598px;}
.xb{left:159.839729px;}
.xe{left:191.700728px;}
.x23{left:218.879998px;}
.x14{left:221.761285px;}
.x15{left:224.281577px;}
.xc{left:234.905397px;}
.xf{left:237.064922px;}
.x2{left:248.939999px;}
.x1e{left:256.860008px;}
.x25{left:276.300007px;}
.x16{left:287.820605px;}
.x9{left:308.694897px;}
.x1d{left:312.477608px;}
.x26{left:321.839985px;}
.x27{left:324.360008px;}
.x24{left:345.420010px;}
.x1c{left:441.171603px;}
.x20{left:444.240006px;}
.x17{left:464.758762px;}
.x5{left:472.135727px;}
.x21{left:497.519989px;}
.x6{left:522.894108px;}
.x18{left:569.517177px;}
.x19{left:668.516910px;}
.x1a{left:673.559832px;}
.x1b{left:707.039880px;}
.x7{left:783.726261px;}
.x8{left:788.750804px;}
.xa{left:792.176824px;}
.x1f{left:811.080025px;}
@media print{
.v1{vertical-align:-61.439944pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:38.035867pt;}
.ls3{letter-spacing:43.846306pt;}
.ls4{letter-spacing:43.846334pt;}
.ls2{letter-spacing:1062.076240pt;}
.ls0{letter-spacing:1065.468590pt;}
.ws0{word-spacing:-13.835632pt;}
.ws1{word-spacing:-13.730545pt;}
.ws5{word-spacing:-12.458600pt;}
.ws4{word-spacing:-11.257800pt;}
.ws2{word-spacing:-9.559875pt;}
.ws3{word-spacing:0.000000pt;}
._3{margin-left:-8.781084pt;}
._24{margin-left:-2.903017pt;}
._0{margin-left:-1.104760pt;}
._1{width:1.071289pt;}
._4{width:2.596186pt;}
._5{width:4.269966pt;}
._1a{width:5.783966pt;}
._6{width:6.988254pt;}
._7{width:8.060052pt;}
._26{width:9.109687pt;}
._15{width:10.445781pt;}
._16{width:11.401472pt;}
._11{width:12.623393pt;}
._38{width:14.795179pt;}
._14{width:15.733970pt;}
._17{width:17.464456pt;}
._18{width:18.833151pt;}
._19{width:19.904570pt;}
._9{width:21.046541pt;}
._8{width:22.010211pt;}
._a{width:23.559654pt;}
._c{width:24.467223pt;}
._b{width:25.630432pt;}
._2b{width:27.391462pt;}
._27{width:28.390718pt;}
._28{width:29.601162pt;}
._e{width:30.661431pt;}
._d{width:31.672088pt;}
._1d{width:32.885241pt;}
._1e{width:34.024407pt;}
._21{width:34.965855pt;}
._3c{width:36.842492pt;}
._3b{width:37.782792pt;}
._22{width:39.411310pt;}
._f{width:40.922080pt;}
._36{width:42.826013pt;}
._35{width:43.837205pt;}
._25{width:45.765182pt;}
._13{width:48.593904pt;}
._12{width:49.483970pt;}
._1c{width:50.524623pt;}
._37{width:52.109285pt;}
._2d{width:53.698945pt;}
._2c{width:54.895788pt;}
._32{width:56.781453pt;}
._10{width:58.471365pt;}
._31{width:67.770816pt;}
._30{width:68.947747pt;}
._1b{width:76.424943pt;}
._3d{width:77.853277pt;}
._29{width:80.204015pt;}
._2a{width:81.455289pt;}
._1f{width:86.057633pt;}
._20{width:87.031927pt;}
._2e{width:94.948910pt;}
._2f{width:95.944165pt;}
._3a{width:106.759087pt;}
._39{width:107.808609pt;}
._3e{width:128.348379pt;}
._34{width:131.755524pt;}
._33{width:133.525618pt;}
._2{width:488.480253pt;}
._23{width:628.703718pt;}
.fsa{font-size:34.890055pt;}
.fs1{font-size:40.227600pt;}
.fs8{font-size:40.304639pt;}
.fs2{font-size:45.031200pt;}
.fsc{font-size:45.116292pt;}
.fs3{font-size:49.834400pt;}
.fs9{font-size:49.929256pt;}
.fs0{font-size:55.238000pt;}
.fs5{font-size:55.342529pt;}
.fs7{font-size:60.155493pt;}
.fsb{font-size:75.051596pt;}
.fs4{font-size:107.474000pt;}
.fs6{font-size:244.969192pt;}
.y80{bottom:-7.203143pt;}
.y75{bottom:-4.318702pt;}
.y0{bottom:0.000000pt;}
.y7d{bottom:2.241299pt;}
.y77{bottom:2.558406pt;}
.y5d{bottom:2.884678pt;}
.y79{bottom:3.199812pt;}
.y7b{bottom:3.675092pt;}
.y58{bottom:3.839965pt;}
.y84{bottom:6.079956pt;}
.y83{bottom:27.040039pt;}
.y3{bottom:28.000000pt;}
.y82{bottom:42.080017pt;}
.y2{bottom:42.880005pt;}
.yad{bottom:61.280029pt;}
.y7f{bottom:65.927611pt;}
.yd3{bottom:68.159973pt;}
.y7e{bottom:70.407609pt;}
.yfa{bottom:73.760010pt;}
.yac{bottom:77.280029pt;}
.y7c{bottom:79.844045pt;}
.yd2{bottom:83.840027pt;}
.yf9{bottom:89.599976pt;}
.yab{bottom:93.280029pt;}
.y134{bottom:95.039978pt;}
.yd1{bottom:99.840027pt;}
.yf8{bottom:105.599976pt;}
.y56{bottom:107.853012pt;}
.y133{bottom:108.159973pt;}
.y34{bottom:108.811441pt;}
.yaa{bottom:109.119995pt;}
.yd0{bottom:115.840027pt;}
.y132{bottom:121.119995pt;}
.yf7{bottom:121.440002pt;}
.y55{bottom:123.851241pt;}
.y33{bottom:124.493080pt;}
.ya9{bottom:124.960022pt;}
.ycf{bottom:131.679993pt;}
.y131{bottom:134.080017pt;}
.yf6{bottom:137.440002pt;}
.y54{bottom:139.693360pt;}
.y32{bottom:140.491391pt;}
.ya8{bottom:140.960022pt;}
.y130{bottom:147.039978pt;}
.yce{bottom:147.520020pt;}
.yf5{bottom:153.280029pt;}
.y53{bottom:155.526985pt;}
.y31{bottom:156.333427pt;}
.ya7{bottom:156.799988pt;}
.y12f{bottom:160.159973pt;}
.ycd{bottom:163.520020pt;}
.yf4{bottom:169.119995pt;}
.y52{bottom:171.369021pt;}
.y30{bottom:172.167052pt;}
.ya6{bottom:172.799988pt;}
.ya5{bottom:172.808809pt;}
.y12e{bottom:173.119995pt;}
.ycc{bottom:179.359985pt;}
.yf3{bottom:185.119995pt;}
.y12d{bottom:186.239990pt;}
.y51{bottom:187.367332pt;}
.y2f{bottom:188.159973pt;}
.ya4{bottom:188.650928pt;}
.ycb{bottom:195.200012pt;}
.y12c{bottom:199.039978pt;}
.yf2{bottom:200.960022pt;}
.y50{bottom:203.209369pt;}
.y2e{bottom:204.000000pt;}
.ya3{bottom:204.488759pt;}
.yca{bottom:211.200012pt;}
.y12b{bottom:212.159973pt;}
.yf1{bottom:216.799988pt;}
.y4f{bottom:219.051488pt;}
.y2d{bottom:220.000000pt;}
.ya2{bottom:220.491276pt;}
.y12a{bottom:225.119995pt;}
.yc9{bottom:227.039978pt;}
.yf0{bottom:232.799988pt;}
.y4e{bottom:235.049799pt;}
.y2c{bottom:235.840027pt;}
.ya1{bottom:236.324901pt;}
.y129{bottom:238.080017pt;}
.yc8{bottom:243.039978pt;}
.yef{bottom:248.799988pt;}
.y4d{bottom:251.048028pt;}
.y128{bottom:251.200012pt;}
.y2b{bottom:251.679993pt;}
.ya0{bottom:252.166938pt;}
.yc7{bottom:258.880005pt;}
.y127{bottom:264.000000pt;}
.yee{bottom:264.479980pt;}
.y4c{bottom:266.725461pt;}
.y2a{bottom:267.679993pt;}
.y9f{bottom:268.165249pt;}
.yc6{bottom:274.719971pt;}
.y126{bottom:277.119995pt;}
.yed{bottom:280.479980pt;}
.y4b{bottom:282.732184pt;}
.y29{bottom:283.520020pt;}
.y9e{bottom:284.007368pt;}
.yc5{bottom:290.719971pt;}
.yec{bottom:296.479980pt;}
.y4a{bottom:298.730495pt;}
.y28{bottom:299.359985pt;}
.y9d{bottom:299.849404pt;}
.yc4{bottom:306.559998pt;}
.yeb{bottom:312.320007pt;}
.y49{bottom:315.049684pt;}
.y27{bottom:315.359985pt;}
.y9c{bottom:315.847716pt;}
.y125{bottom:322.239990pt;}
.yc3{bottom:322.400024pt;}
.yea{bottom:328.159973pt;}
.y48{bottom:330.406157pt;}
.y26{bottom:331.359985pt;}
.y9b{bottom:331.689752pt;}
.y124{bottom:336.799988pt;}
.y123{bottom:336.811435pt;}
.yc2{bottom:338.400024pt;}
.ye9{bottom:344.159973pt;}
.y47{bottom:346.408674pt;}
.y25{bottom:347.039978pt;}
.y9a{bottom:347.523377pt;}
.y122{bottom:352.320007pt;}
.yc1{bottom:354.239990pt;}
.ye8{bottom:360.000000pt;}
.y46{bottom:362.246587pt;}
.y24{bottom:363.039978pt;}
.y99{bottom:363.530100pt;}
.y121{bottom:365.760010pt;}
.yc0{bottom:370.080017pt;}
.ye7{bottom:375.840027pt;}
.y45{bottom:378.088623pt;}
.y23{bottom:379.039978pt;}
.y98{bottom:379.363766pt;}
.y120{bottom:381.760010pt;}
.ybf{bottom:386.080017pt;}
.ye6{bottom:391.679993pt;}
.y44{bottom:394.086935pt;}
.y22{bottom:394.719971pt;}
.y97{bottom:395.370489pt;}
.y11f{bottom:397.599976pt;}
.y11e{bottom:397.604102pt;}
.ybe{bottom:401.919983pt;}
.ye5{bottom:407.679993pt;}
.y43{bottom:409.928971pt;}
.y21{bottom:410.719971pt;}
.y96{bottom:411.212567pt;}
.y11d{bottom:413.610825pt;}
.ybd{bottom:417.919983pt;}
.ye4{bottom:423.679993pt;}
.y42{bottom:425.923077pt;}
.y20{bottom:426.719971pt;}
.y95{bottom:427.046192pt;}
.y11c{bottom:429.288217pt;}
.ybc{bottom:433.760010pt;}
.ye3{bottom:439.359985pt;}
.y41{bottom:441.765113pt;}
.y1f{bottom:442.559998pt;}
.y94{bottom:443.048709pt;}
.y11b{bottom:445.286528pt;}
.ybb{bottom:449.599976pt;}
.ye2{bottom:455.359985pt;}
.y57{bottom:455.520020pt;}
.y40{bottom:457.607191pt;}
.y1e{bottom:458.400024pt;}
.y93{bottom:458.886540pt;}
.y11a{bottom:461.284839pt;}
.yba{bottom:465.599976pt;}
.ye1{bottom:471.359985pt;}
.y3f{bottom:473.605502pt;}
.y1d{bottom:474.400024pt;}
.y92{bottom:474.728618pt;}
.y119{bottom:477.126876pt;}
.yb9{bottom:481.440002pt;}
.ye0{bottom:487.039978pt;}
.y3e{bottom:489.287100pt;}
.y1c{bottom:490.239990pt;}
.y91{bottom:490.726929pt;}
.y118{bottom:492.968954pt;}
.yb8{bottom:497.280029pt;}
.ydf{bottom:503.039978pt;}
.y3d{bottom:505.285411pt;}
.y1b{bottom:506.239990pt;}
.y90{bottom:506.729446pt;}
.y117{bottom:508.967265pt;}
.yb7{bottom:513.280029pt;}
.yde{bottom:519.039978pt;}
.y3c{bottom:521.287928pt;}
.y1a{bottom:521.919983pt;}
.y8f{bottom:522.411043pt;}
.y74{bottom:524.802082pt;}
.y116{bottom:524.809343pt;}
.yb6{bottom:529.280029pt;}
.ydd{bottom:534.880005pt;}
.y3b{bottom:537.121553pt;}
.y73{bottom:537.602912pt;}
.y19{bottom:537.919983pt;}
.y8e{bottom:538.405149pt;}
.y115{bottom:540.642968pt;}
.yb5{bottom:544.959991pt;}
.ydc{bottom:550.720001pt;}
.y3a{bottom:552.963631pt;}
.y72{bottom:553.605429pt;}
.y18{bottom:553.920013pt;}
.y8d{bottom:554.403419pt;}
.y114{bottom:556.645485pt;}
.yb4{bottom:560.959991pt;}
.y76{bottom:563.993844pt;}
.ydb{bottom:566.720001pt;}
.y39{bottom:568.961901pt;}
.y71{bottom:569.443259pt;}
.y17{bottom:569.600006pt;}
.y8c{bottom:570.245496pt;}
.y113{bottom:572.480011pt;}
.yb3{bottom:576.959991pt;}
.yda{bottom:582.559998pt;}
.y38{bottom:584.803979pt;}
.y70{bottom:585.285337pt;}
.y16{bottom:585.600006pt;}
.y8b{bottom:586.087574pt;}
.y78{bottom:587.680864pt;}
.y112{bottom:588.480011pt;}
.yb2{bottom:592.640015pt;}
.yd9{bottom:598.399994pt;}
.y37{bottom:600.802290pt;}
.y6f{bottom:601.287854pt;}
.y15{bottom:601.600006pt;}
.y8a{bottom:602.085844pt;}
.y111{bottom:604.320007pt;}
.yb1{bottom:608.640015pt;}
.yd8{bottom:614.399994pt;}
.y36{bottom:616.644368pt;}
.y6e{bottom:617.125685pt;}
.y89{bottom:617.927922pt;}
.y14{bottom:618.399994pt;}
.y110{bottom:620.160004pt;}
.yb0{bottom:624.480011pt;}
.yd7{bottom:630.239990pt;}
.y35{bottom:632.486404pt;}
.y6d{bottom:633.128202pt;}
.y88{bottom:633.761547pt;}
.y13{bottom:633.920013pt;}
.y10f{bottom:636.160004pt;}
.yd6{bottom:646.239990pt;}
.y6c{bottom:648.963518pt;}
.yaf{bottom:651.040009pt;}
.y10e{bottom:652.000000pt;}
.y14a{bottom:654.559998pt;}
.y86{bottom:655.679993pt;}
.y87{bottom:655.687199pt;}
.yae{bottom:661.600006pt;}
.y12{bottom:664.799988pt;}
.y6b{bottom:664.805596pt;}
.y85{bottom:666.244559pt;}
.y10d{bottom:667.839996pt;}
.y149{bottom:668.160004pt;}
.yd5{bottom:672.640015pt;}
.y6a{bottom:680.803041pt;}
.yd4{bottom:683.200012pt;}
.y10c{bottom:683.839996pt;}
.y148{bottom:684.160004pt;}
.y11{bottom:695.679993pt;}
.y69{bottom:696.645119pt;}
.y10b{bottom:699.679993pt;}
.y147{bottom:699.839996pt;}
.y10{bottom:711.200012pt;}
.y68{bottom:712.487176pt;}
.y10a{bottom:715.519989pt;}
.y146{bottom:715.839996pt;}
.y67{bottom:728.484642pt;}
.y109{bottom:731.519989pt;}
.y145{bottom:731.839996pt;}
.y66{bottom:744.482087pt;}
.y144{bottom:747.200012pt;}
.y108{bottom:747.359985pt;}
.y143{bottom:760.160004pt;}
.y65{bottom:760.162015pt;}
.y107{bottom:763.359985pt;}
.yf{bottom:772.799988pt;}
.y142{bottom:773.119995pt;}
.y64{bottom:776.166222pt;}
.y106{bottom:779.200012pt;}
.y141{bottom:786.239990pt;}
.ye{bottom:788.320007pt;}
.y63{bottom:792.163667pt;}
.y105{bottom:795.040009pt;}
.y140{bottom:799.200012pt;}
.yd{bottom:803.839996pt;}
.y62{bottom:807.843616pt;}
.y104{bottom:811.039993pt;}
.y13f{bottom:813.440002pt;}
.yc{bottom:819.199997pt;}
.y61{bottom:823.841061pt;}
.y13e{bottom:826.399994pt;}
.y103{bottom:826.880005pt;}
.yb{bottom:834.720001pt;}
.y13d{bottom:839.520004pt;}
.y60{bottom:839.845269pt;}
.y102{bottom:842.720001pt;}
.ya{bottom:849.919998pt;}
.y13c{bottom:852.320007pt;}
.y5f{bottom:855.680584pt;}
.y101{bottom:858.720001pt;}
.y9{bottom:865.440002pt;}
.y5e{bottom:871.522641pt;}
.y100{bottom:874.720001pt;}
.y13b{bottom:878.399994pt;}
.y8{bottom:880.960007pt;}
.y5c{bottom:884.480041pt;}
.y5b{bottom:887.364719pt;}
.yff{bottom:890.399994pt;}
.y13a{bottom:891.520004pt;}
.y7{bottom:896.320007pt;}
.y5a{bottom:903.362164pt;}
.y139{bottom:904.479996pt;}
.yfe{bottom:906.399994pt;}
.y6{bottom:911.839996pt;}
.y7a{bottom:915.204871pt;}
.y138{bottom:917.440002pt;}
.y59{bottom:919.359620pt;}
.yfd{bottom:922.399994pt;}
.y5{bottom:927.199997pt;}
.y137{bottom:930.400002pt;}
.yfc{bottom:938.080002pt;}
.y136{bottom:943.519997pt;}
.y4{bottom:948.320000pt;}
.yfb{bottom:954.080002pt;}
.y135{bottom:956.480003pt;}
.y81{bottom:982.559998pt;}
.y1{bottom:998.560001pt;}
.h16{height:2.395710pt;}
.hc{height:8.316183pt;}
.h14{height:11.520620pt;}
.he{height:13.124094pt;}
.hb{height:14.558492pt;}
.h10{height:16.315224pt;}
.h12{height:16.639243pt;}
.h15{height:30.171039pt;}
.h19{height:34.059243pt;}
.h1a{height:34.123602pt;}
.h1d{height:34.796480pt;}
.hf{height:34.872959pt;}
.h1c{height:36.280806pt;}
.h1b{height:37.692132pt;}
.h8{height:38.642489pt;}
.h1{height:41.779132pt;}
.h7{height:41.858192pt;}
.h11{height:43.200509pt;}
.h2{height:44.789333pt;}
.h5{height:45.391450pt;}
.hd{height:45.498466pt;}
.h6{height:45.661637pt;}
.h9{height:47.679992pt;}
.h3{height:49.566735pt;}
.h17{height:54.941312pt;}
.h13{height:55.045279pt;}
.h18{height:74.648487pt;}
.h4{height:110.053376pt;}
.ha{height:185.281874pt;}
.h0{height:1056.000000pt;}
.we{width:2.397842pt;}
.wb{width:2.563937pt;}
.w16{width:4.156821pt;}
.w13{width:4.961740pt;}
.w5{width:5.116797pt;}
.w8{width:6.558097pt;}
.w3{width:7.042126pt;}
.w9{width:7.998723pt;}
.w2{width:8.959770pt;}
.wc{width:12.159554pt;}
.wa{width:19.838609pt;}
.w6{width:30.242782pt;}
.w14{width:30.398898pt;}
.w7{width:40.323728pt;}
.w1{width:40.800010pt;}
.w15{width:48.957696pt;}
.wf{width:56.479136pt;}
.wd{width:60.320773pt;}
.w4{width:66.725038pt;}
.w12{width:87.999762pt;}
.w11{width:93.118591pt;}
.w10{width:157.597790pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:91.519997pt;}
.x10{left:100.641117pt;}
.x22{left:114.080002pt;}
.x11{left:120.317880pt;}
.x12{left:122.719985pt;}
.x3{left:132.320007pt;}
.x13{left:134.717693pt;}
.x4{left:136.479996pt;}
.xd{left:140.157865pt;}
.xb{left:142.079759pt;}
.xe{left:170.400647pt;}
.x23{left:194.559998pt;}
.x14{left:197.121143pt;}
.x15{left:199.361402pt;}
.xc{left:208.804797pt;}
.xf{left:210.724375pt;}
.x2{left:221.279999pt;}
.x1e{left:228.320007pt;}
.x25{left:245.600006pt;}
.x16{left:255.840538pt;}
.x9{left:274.395464pt;}
.x1d{left:277.757873pt;}
.x26{left:286.079987pt;}
.x27{left:288.320007pt;}
.x24{left:307.040009pt;}
.x1c{left:392.152536pt;}
.x20{left:394.880005pt;}
.x17{left:413.118899pt;}
.x5{left:419.676202pt;}
.x21{left:442.239990pt;}
.x6{left:464.794763pt;}
.x18{left:506.237491pt;}
.x19{left:594.237253pt;}
.x1a{left:598.719851pt;}
.x1b{left:628.479893pt;}
.x7{left:696.645565pt;}
.x8{left:701.111826pt;}
.xa{left:704.157177pt;}
.x1f{left:720.960022pt;}
}




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